67 lines
1 KiB
YAML
67 lines
1 KiB
YAML
|
---
|
||
|
in: 'This is an empty dictionary: @{}@'
|
||
|
out: '<p>This is an empty dictionary: <code>{}</code></p>'
|
||
|
---
|
||
|
in: |-
|
||
|
Testing nested pre tags...
|
||
|
|
||
|
<pre>
|
||
|
<code>
|
||
|
Good code here.
|
||
|
|
||
|
<pre>
|
||
|
a = 1
|
||
|
</pre>
|
||
|
|
||
|
Bad code here.
|
||
|
|
||
|
<script language="JavaScript">
|
||
|
window.open( "about:blank" );
|
||
|
</script>
|
||
|
</code>
|
||
|
</pre>
|
||
|
|
||
|
out: |-
|
||
|
<p>Testing nested pre tags…</p>
|
||
|
|
||
|
<pre>
|
||
|
<code>
|
||
|
Good code here.
|
||
|
|
||
|
<pre>
|
||
|
a = 1
|
||
|
</pre>
|
||
|
|
||
|
Bad code here.
|
||
|
|
||
|
<script language="JavaScript">
|
||
|
window.open( "about:blank" );
|
||
|
</script>
|
||
|
</code>
|
||
|
</pre>
|
||
|
---
|
||
|
in: |-
|
||
|
<pre>
|
||
|
*** test
|
||
|
</pre>
|
||
|
out: |-
|
||
|
<pre>
|
||
|
*** test
|
||
|
</pre>
|
||
|
---
|
||
|
in: |-
|
||
|
<notextile>
|
||
|
*** test
|
||
|
</notextile>
|
||
|
out: |-
|
||
|
*** test
|
||
|
---
|
||
|
in: '*this <span></span> is strong*'
|
||
|
out: '<p><strong>this <span></span> is strong</strong></p>'
|
||
|
---
|
||
|
in: '*this <span>test</span> is strong*'
|
||
|
out: '<p><strong>this <span>test</span> is strong</strong></p>'
|
||
|
---
|
||
|
in: <pre class="code"> __inline__</pre>
|
||
|
out: <pre class="code"> __inline__</pre>
|