size: 1 KiB

1```
2## Heading
3.
4<section id="Heading">
5<h2>Heading</h2>
6</section>
7```
8
9```
10# Heading
11
12# another
13.
14<section id="Heading">
15<h1>Heading</h1>
16</section>
17<section id="another">
18<h1>another</h1>
19</section>
20```
21
22```
23# Heading
24# continued
25.
26<section id="Heading-continued">
27<h1>Heading
28continued</h1>
29</section>
30```
31
32```
33##
34heading
35
36para
37.
38<section id="heading">
39<h2>heading</h2>
40<p>para</p>
41</section>
42```
43
44```
45##
46.
47<section id="s-1">
48<h2></h2>
49</section>
50```
51
52```
53## Heading
54### Next level
55.
56<section id="Heading">
57<h2>Heading</h2>
58<section id="Next-level">
59<h3>Next level</h3>
60</section>
61</section>
62```
63
64```
65# Heading
66lazy
67.
68<section id="Heading-lazy">
69<h1>Heading
70lazy</h1>
71</section>
72```
73
74```
75# Heading
76lazy
77# more
78lazy
79
80text
81.
82<section id="Heading-lazy-more-lazy">
83<h1>Heading
84lazy
85more
86lazy</h1>
87<p>text</p>
88</section>
89```
90
91```
92##Notheading
93.
94<p>##Notheading</p>
95```
96
97```
98 ## Heading
99.
100<section id="Heading">
101<h2>Heading</h2>
102</section>
103```
104
105```
106## heading ##
107.
108<section id="heading">
109<h2>heading ##</h2>
110</section>
111```
112
113```
114# # heading
115.
116<section id="heading">
117<h1># heading</h1>
118</section>
119```
120
121Auto-identifiers:
122
123```
124{#Foo-bar}
125Paragraph
126
127# Foo bar
128
129## Foo bar
130
131{#baz}
132# Foo bar
133.
134<p id="Foo-bar">Paragraph</p>
135<section id="Foo-bar-1">
136<h1>Foo bar</h1>
137<section id="Foo-bar-2">
138<h2>Foo bar</h2>
139</section>
140</section>
141<section id="baz">
142<h1>Foo bar</h1>
143</section>
144```
145
146Implicit header references:
147
148```
149See [Introduction][].
150
151# Introduction
152.
153<p>See <a href="#Introduction">Introduction</a>.</p>
154<section id="Introduction">
155<h1>Introduction</h1>
156</section>
157```
158
159```
160See [Introduction][].
161
162{#foo}
163# Introduction
164.
165<p>See <a href="#foo">Introduction</a>.</p>
166<section id="foo">
167<h1>Introduction</h1>
168</section>
169```
170
171```
172See [Introduction][].
173
174# Introduction
175
176[Introduction]: #bar
177.
178<p>See <a href="#bar">Introduction</a>.</p>
179<section id="Introduction">
180<h1>Introduction</h1>
181</section>
182```