File: UnderlineHeaders.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 (109 lines) | stat: -rw-r--r-- 921 bytes parent folder | download | duplicates (2)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
Header 1
========
+++
<h1>Header 1</h1>
+++
Header 2
--------
+++
<h2>Header 2</h2>
+++
A
=
+++
<h1>A</h1>
+++
B
-
+++
<h2>B</h2>
+++
Paragraph
Header
=
+++
<p>Paragraph</p>

<h1>Header</h1>
+++
Header
===
Paragraph
+++
<h1>Header</h1>

<p>Paragraph</p>
+++
Header
===
Another header
---
+++
<h1>Header</h1>

<h2>Another header</h2>
+++
   Header
======
+++
<h1>Header</h1>
+++
    Code
========
+++
<pre><code>Code
</code></pre>

<p>========</p>
+++
Header with *inline*
=====
+++
<h1>Header with <em>inline</em></h1>
+++
*   List
    * Sublist
    Not a header
    ------
+++
<ul>
<li>List

<ul>
<li>Sublist
Not a header
------</li>
</ul></li>
</ul>
+++
Paragraph




Header
===
+++
<p>Paragraph</p>

<h1>Header</h1>
+++
Trailing space 
====        

+++
<h1>Trailing space</h1>
+++
Trailing spaces
====        

+++
<h1>Trailing spaces</h1>
+++
Double underline
=====
=====
+++
<h1>Double underline</h1>

<p>=====</p>