File: DefinitionListWithFencedCodeBlock.tests

package info (click to toggle)
golang-github-gomarkdown-markdown 0.0~git20231115.a660076-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,168 kB
  • sloc: sh: 26; makefile: 5
file content (47 lines) | stat: -rw-r--r-- 464 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
one:
: def1

two:
: def2

    ~~~
    code
    ~~~
+++
<dl>
<dt>one:</dt>
<dd><p>def1</p></dd>
<dt>two:</dt>
<dd><p>def2</p>

<pre><code>code
</code></pre></dd>
</dl>
+++
Paragraph

one:
: def1

two:
: def2

~~~
 <some-code>Code Example</some-code>
~~~

One more paragraph
+++
<p>Paragraph</p>

<dl>
<dt>one:</dt>
<dd>def1</dd>
<dt>two:</dt>
<dd>def2</dd>
</dl>

<pre><code> &lt;some-code&gt;Code Example&lt;/some-code&gt;
</code></pre>

<p>One more paragraph</p>