blob: ceb1f16c2b5557d01de785f599ca33eb8b3907b7 [file]
>>> without an optional language identifier
```
code
```
<<<
<pre><code>code
</code></pre>
>>> with an optional language identifier
```dart
code
```
<<<
<pre class="dart"><code>code
</code></pre>
>>> escape HTML characters
```
<&>
```
<<<
<pre><code>&lt;&amp;&gt;
</code></pre>
>>> Pandoc style without language identifier
~~~~~
code
~~~~~
<<<
<pre><code>code
</code></pre>
>>> Pandoc style with language identifier
~~~~~dart
code
~~~~~
<<<
<pre class="dart"><code>code
</code></pre>
>>> Pandoc style with inner tildes row
~~~~~
~~~
code
~~~
~~~~~
<<<
<pre><code>~~~
code
~~~
</code></pre>