rhymix/common/vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Tilde Fenced Code Blocks Special Cases.xhtml
Kijin Sung 5fff6b6eab Move all composer files inside the common directory
- 2022년 3월 개발팀 결정사항 적용
- 모듈 등 서드파티 자료 개발시 composer를 사용하면 상위 경로에 있는 코어의
  composer.json을 수정하고, 코어의 vendor 디렉토리를 건드리는 것이 기본값임
- 이를 방지하기 위해 코어의 composer.json과 vendor를 common 디렉토리 안으로
  이동하여, 모듈 경로에서 상위 폴더로 인식하지 않도록 함
2022-12-26 16:33:32 +09:00

61 lines
1 KiB
HTML

<pre><code class="html">&lt;ul>
&lt;li>Code block first in file&lt;/li>
&lt;li>doesn't work under some circumstances&lt;/li>
&lt;/ul>
</code></pre>
<p>As above: checking for bad interractions with the HTML block parser:</p>
<pre><code class="html">&lt;div>
</code></pre>
<p>Some <em>markdown</em><code>formatting</code>.</p>
<pre><code class="html">&lt;/div>
</code></pre>
<p>Some <em>markdown</em></p>
<pre><code>&lt;div>
&lt;html>
</code></pre>
<pre><code>function test();
</code></pre>
<div>
<pre><code>&lt;html&gt;
&lt;title&gt;
</code></pre>
</div>
<div>
<pre><code>&lt;html&gt;
&lt;title&gt;
</code></pre>
</div>
<p>Two code blocks with no blank line between them:</p>
<pre><code>&lt;div&gt;
</code></pre>
<pre><code>&lt;div&gt;
</code></pre>
<p>Testing <em>confusion</em> with markers in the middle:</p>
<pre><code>&lt;div>~~~&lt;/div>
</code></pre>
<p>Testing mixing with title code blocks</p>
<pre><code>&lt;p>```
```
&lt;p>```
</code></pre>
<pre><code>&lt;p>```
~~~
&lt;p>```
</code></pre>