-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
commonmark-spec.html
7129 lines (6858 loc) · 221 KB
/
commonmark-spec.html
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<h1>Introduction</h1>
<h2>What is Markdown?</h2>
<p>Markdown is a plain text format for writing structured documents,
based on conventions for indicating formatting in email
and usenet posts. It was developed by John Gruber (with
help from Aaron Swartz) and released in 2004 in the form of a
<a href="http://daringfireball.net/projects/markdown/syntax">syntax description</a>
and a Perl script (<code>Markdown.pl</code>) for converting Markdown to
HTML. In the next decade, dozens of implementations were
developed in many languages. Some extended the original
Markdown syntax with conventions for footnotes, tables, and
other document elements. Some allowed Markdown documents to be
rendered in formats other than HTML. Websites like Reddit,
StackOverflow, and GitHub had millions of people using Markdown.
And Markdown started to be used beyond the web, to author books,
articles, slide shows, letters, and lecture notes.</p>
<p>What distinguishes Markdown from many other lightweight markup
syntaxes, which are often easier to write, is its readability.
As Gruber writes:</p>
<blockquote>
<p>The overriding design goal for Markdown's formatting syntax is
to make it as readable as possible. The idea is that a
Markdown-formatted document should be publishable as-is, as
plain text, without looking like it's been marked up with tags
or formatting instructions.
(<a href="http://daringfireball.net/projects/markdown/">http://daringfireball.net/projects/markdown/</a>)</p>
</blockquote>
<p>The point can be illustrated by comparing a sample of
<a href="http://www.methods.co.nz/asciidoc/">AsciiDoc</a> with
an equivalent sample of Markdown. Here is a sample of
AsciiDoc from the AsciiDoc manual:</p>
<pre><code>1. List item one.
+
List item one continued with a second paragraph followed by an
Indented block.
+
.................
$ ls *.sh
$ mv *.sh ~/tmp
.................
+
List item continued with a third paragraph.
2. List item two continued with an open block.
+
--
This paragraph is part of the preceding list item.
a. This list is nested and does not require explicit item
continuation.
+
This paragraph is part of the preceding list item.
b. List item b.
This paragraph belongs to item two of the outer list.
--
</code></pre>
<p>And here is the equivalent in Markdown:</p>
<pre><code>1. List item one.
List item one continued with a second paragraph followed by an
Indented block.
$ ls *.sh
$ mv *.sh ~/tmp
List item continued with a third paragraph.
2. List item two continued with an open block.
This paragraph is part of the preceding list item.
1. This list is nested and does not require explicit item continuation.
This paragraph is part of the preceding list item.
2. List item b.
This paragraph belongs to item two of the outer list.
</code></pre>
<p>The AsciiDoc version is, arguably, easier to write. You don't need
to worry about indentation. But the Markdown version is much easier
to read. The nesting of list items is apparent to the eye in the
source, not just in the processed document.</p>
<h2>Why is a spec needed?</h2>
<p>John Gruber's <a href="http://daringfireball.net/projects/markdown/syntax">canonical description of Markdown's
syntax</a>
does not specify the syntax unambiguously. Here are some examples of
questions it does not answer:</p>
<ol>
<li>
<p>How much indentation is needed for a sublist? The spec says that
continuation paragraphs need to be indented four spaces, but is
not fully explicit about sublists. It is natural to think that
they, too, must be indented four spaces, but <code>Markdown.pl</code> does
not require that. This is hardly a "corner case," and divergences
between implementations on this issue often lead to surprises for
users in real documents. (See <a href="http://article.gmane.org/gmane.text.markdown.general/1997">this comment by John
Gruber</a>.)</p>
</li>
<li>
<p>Is a blank line needed before a block quote or heading?
Most implementations do not require the blank line. However,
this can lead to unexpected results in hard-wrapped text, and
also to ambiguities in parsing (note that some implementations
put the heading inside the blockquote, while others do not).
(John Gruber has also spoken <a href="http://article.gmane.org/gmane.text.markdown.general/2146">in favor of requiring the blank
lines</a>.)</p>
</li>
<li>
<p>Is a blank line needed before an indented code block?
(<code>Markdown.pl</code> requires it, but this is not mentioned in the
documentation, and some implementations do not require it.)</p>
<pre><code class="language-markdown">paragraph
code?
</code></pre>
</li>
<li>
<p>What is the exact rule for determining when list items get
wrapped in <code><p></code> tags? Can a list be partially "loose" and partially
"tight"? What should we do with a list like this?</p>
<pre><code class="language-markdown">1. one
2. two
3. three
</code></pre>
<p>Or this?</p>
<pre><code class="language-markdown">1. one
- a
- b
2. two
</code></pre>
<p>(There are some relevant comments by John Gruber
<a href="http://article.gmane.org/gmane.text.markdown.general/2554">here</a>.)</p>
</li>
<li>
<p>Can list markers be indented? Can ordered list markers be right-aligned?</p>
<pre><code class="language-markdown"> 8. item 1
9. item 2
10. item 2a
</code></pre>
</li>
<li>
<p>Is this one list with a thematic break in its second item,
or two lists separated by a thematic break?</p>
<pre><code class="language-markdown">* a
* * * * *
* b
</code></pre>
</li>
<li>
<p>When list markers change from numbers to bullets, do we have
two lists or one? (The Markdown syntax description suggests two,
but the perl scripts and many other implementations produce one.)</p>
<pre><code class="language-markdown">1. fee
2. fie
- foe
- fum
</code></pre>
</li>
<li>
<p>What are the precedence rules for the markers of inline structure?
For example, is the following a valid link, or does the code span
take precedence ?</p>
<pre><code class="language-markdown">[a backtick (`)](/url) and [another backtick (`)](/url).
</code></pre>
</li>
<li>
<p>What are the precedence rules for markers of emphasis and strong
emphasis? For example, how should the following be parsed?</p>
<pre><code class="language-markdown">*foo *bar* baz*
</code></pre>
</li>
<li>
<p>What are the precedence rules between block-level and inline-level
structure? For example, how should the following be parsed?</p>
<pre><code class="language-markdown">- `a long code span can contain a hyphen like this
- and it can screw things up`
</code></pre>
</li>
<li>
<p>Can list items include section headings? (<code>Markdown.pl</code> does not
allow this, but does allow blockquotes to include headings.)</p>
<pre><code class="language-markdown">- # Heading
</code></pre>
</li>
<li>
<p>Can list items be empty?</p>
<pre><code class="language-markdown">* a
*
* b
</code></pre>
</li>
<li>
<p>Can link references be defined inside block quotes or list items?</p>
<pre><code class="language-markdown">> Blockquote [foo].
>
> [foo]: /url
</code></pre>
</li>
<li>
<p>If there are multiple definitions for the same reference, which takes
precedence?</p>
<pre><code class="language-markdown">[foo]: /url1
[foo]: /url2
[foo][]
</code></pre>
</li>
</ol>
<p>In the absence of a spec, early implementers consulted <code>Markdown.pl</code>
to resolve these ambiguities. But <code>Markdown.pl</code> was quite buggy, and
gave manifestly bad results in many cases, so it was not a
satisfactory replacement for a spec.</p>
<p>Because there is no unambiguous spec, implementations have diverged
considerably. As a result, users are often surprised to find that
a document that renders one way on one system (say, a GitHub wiki)
renders differently on another (say, converting to docbook using
pandoc). To make matters worse, because nothing in Markdown counts
as a "syntax error," the divergence often isn't discovered right away.</p>
<h2>About this document</h2>
<p>This document attempts to specify Markdown syntax unambiguously.
It contains many examples with side-by-side Markdown and
HTML. These are intended to double as conformance tests. An
accompanying script <code>spec_tests.py</code> can be used to run the tests
against any Markdown program:</p>
<pre><code>python test/spec_tests.py --spec spec.txt --program PROGRAM
</code></pre>
<p>Since this document describes how Markdown is to be parsed into
an abstract syntax tree, it would have made sense to use an abstract
representation of the syntax tree instead of HTML. But HTML is capable
of representing the structural distinctions we need to make, and the
choice of HTML for the tests makes it possible to run the tests against
an implementation without writing an abstract syntax tree renderer.</p>
<p>This document is generated from a text file, <code>spec.txt</code>, written
in Markdown with a small extension for the side-by-side tests.
The script <code>tools/makespec.py</code> can be used to convert <code>spec.txt</code> into
HTML or CommonMark (which can then be converted into other formats).</p>
<p>In the examples, the <code>→</code> character is used to represent tabs.</p>
<h1>Preliminaries</h1>
<h2>Characters and lines</h2>
<p>Any sequence of [characters] is a valid CommonMark
document.</p>
<p>A <a href="@">character</a> is a Unicode code point. Although some
code points (for example, combining accents) do not correspond to
characters in an intuitive sense, all code points count as characters
for purposes of this spec.</p>
<p>This spec does not specify an encoding; it thinks of lines as composed
of [characters] rather than bytes. A conforming parser may be limited
to a certain encoding.</p>
<p>A <a href="@">line</a> is a sequence of zero or more [characters]
other than newline (<code>U+000A</code>) or carriage return (<code>U+000D</code>),
followed by a [line ending] or by the end of file.</p>
<p>A <a href="@">line ending</a> is a newline (<code>U+000A</code>), a carriage return
(<code>U+000D</code>) not followed by a newline, or a carriage return and a
following newline.</p>
<p>A line containing no characters, or a line containing only spaces
(<code>U+0020</code>) or tabs (<code>U+0009</code>), is called a <a href="@">blank line</a>.</p>
<p>The following definitions of character classes will be used in this spec:</p>
<p>A <a href="@">whitespace character</a> is a space
(<code>U+0020</code>), tab (<code>U+0009</code>), newline (<code>U+000A</code>), line tabulation (<code>U+000B</code>),
form feed (<code>U+000C</code>), or carriage return (<code>U+000D</code>).</p>
<p><a href="@">Whitespace</a> is a sequence of one or more [whitespace
characters].</p>
<p>A <a href="@">Unicode whitespace character</a> is
any code point in the Unicode <code>Zs</code> general category, or a tab (<code>U+0009</code>),
carriage return (<code>U+000D</code>), newline (<code>U+000A</code>), or form feed
(<code>U+000C</code>).</p>
<p><a href="@">Unicode whitespace</a> is a sequence of one
or more [Unicode whitespace characters].</p>
<p>A <a href="@">space</a> is <code>U+0020</code>.</p>
<p>A <a href="@">non-whitespace character</a> is any character
that is not a [whitespace character].</p>
<p>An <a href="@">ASCII punctuation character</a>
is <code>!</code>, <code>"</code>, <code>#</code>, <code>$</code>, <code>%</code>, <code>&</code>, <code>'</code>, <code>(</code>, <code>)</code>,
<code>*</code>, <code>+</code>, <code>,</code>, <code>-</code>, <code>.</code>, <code>/</code> (U+0021–2F),
<code>:</code>, <code>;</code>, <code><</code>, <code>=</code>, <code>></code>, <code>?</code>, <code>@</code> (U+003A–0040),
<code>[</code>, <code>\</code>, <code>]</code>, <code>^</code>, <code>_</code>, <code>`</code> (U+005B–0060),
<code>{</code>, <code>|</code>, <code>}</code>, or <code>~</code> (U+007B–007E).</p>
<p>A <a href="@">punctuation character</a> is an [ASCII
punctuation character] or anything in
the general Unicode categories <code>Pc</code>, <code>Pd</code>, <code>Pe</code>, <code>Pf</code>, <code>Pi</code>, <code>Po</code>, or <code>Ps</code>.</p>
<h2>Tabs</h2>
<p>Tabs in lines are not expanded to [spaces]. However,
in contexts where whitespace helps to define block structure,
tabs behave as if they were replaced by spaces with a tab stop
of 4 characters.</p>
<p>Thus, for example, a tab can be used instead of four spaces
in an indented code block. (Note, however, that internal
tabs are passed through as literal tabs, not expanded to
spaces.)</p>
<pre><code class="language-example">→foo→baz→→bim
.
<pre><code>foo→baz→→bim
</code></pre>
</code></pre>
<pre><code class="language-example"> →foo→baz→→bim
.
<pre><code>foo→baz→→bim
</code></pre>
</code></pre>
<pre><code class="language-example"> a→a
ὐ→a
.
<pre><code>a→a
ὐ→a
</code></pre>
</code></pre>
<p>In the following example, a continuation paragraph of a list
item is indented with a tab; this has exactly the same effect
as indentation with four spaces would:</p>
<pre><code class="language-example"> - foo
→bar
.
<ul>
<li>
<p>foo</p>
<p>bar</p>
</li>
</ul>
</code></pre>
<pre><code class="language-example">- foo
→→bar
.
<ul>
<li>
<p>foo</p>
<pre><code> bar
</code></pre>
</li>
</ul>
</code></pre>
<p>Normally the <code>></code> that begins a block quote may be followed
optionally by a space, which is not considered part of the
content. In the following case <code>></code> is followed by a tab,
which is treated as if it were expanded into three spaces.
Since one of these spaces is considered part of the
delimiter, <code>foo</code> is considered to be indented six spaces
inside the block quote context, so we get an indented
code block starting with two spaces.</p>
<pre><code class="language-example">>→→foo
.
<blockquote>
<pre><code> foo
</code></pre>
</blockquote>
</code></pre>
<pre><code class="language-example">-→→foo
.
<ul>
<li>
<pre><code> foo
</code></pre>
</li>
</ul>
</code></pre>
<pre><code class="language-example"> foo
→bar
.
<pre><code>foo
bar
</code></pre>
</code></pre>
<pre><code class="language-example"> - foo
- bar
→ - baz
.
<ul>
<li>foo
<ul>
<li>bar
<ul>
<li>baz</li>
</ul>
</li>
</ul>
</li>
</ul>
</code></pre>
<pre><code class="language-example">#→Foo
.
<h1>Foo</h1>
</code></pre>
<pre><code class="language-example">*→*→*→
.
<hr />
</code></pre>
<h2>Insecure characters</h2>
<p>For security reasons, the Unicode character <code>U+0000</code> must be replaced
with the REPLACEMENT CHARACTER (<code>U+FFFD</code>).</p>
<h1>Blocks and inlines</h1>
<p>We can think of a document as a sequence of
<a href="@">blocks</a>---structural elements like paragraphs, block
quotations, lists, headings, rules, and code blocks. Some blocks (like
block quotes and list items) contain other blocks; others (like
headings and paragraphs) contain <a href="@">inline</a> content---text,
links, emphasized text, images, code spans, and so on.</p>
<h2>Precedence</h2>
<p>Indicators of block structure always take precedence over indicators
of inline structure. So, for example, the following is a list with
two items, not a list with one item containing a code span:</p>
<pre><code class="language-example">- `one
- two`
.
<ul>
<li>`one</li>
<li>two`</li>
</ul>
</code></pre>
<p>This means that parsing can proceed in two steps: first, the block
structure of the document can be discerned; second, text lines inside
paragraphs, headings, and other block constructs can be parsed for inline
structure. The second step requires information about link reference
definitions that will be available only at the end of the first
step. Note that the first step requires processing lines in sequence,
but the second can be parallelized, since the inline parsing of
one block element does not affect the inline parsing of any other.</p>
<h2>Container blocks and leaf blocks</h2>
<p>We can divide blocks into two types:
<a href="@">container blocks</a>,
which can contain other blocks, and <a href="@">leaf blocks</a>,
which cannot.</p>
<h1>Leaf blocks</h1>
<p>This section describes the different kinds of leaf block that make up a
Markdown document.</p>
<h2>Thematic breaks</h2>
<p>A line consisting of 0-3 spaces of indentation, followed by a sequence
of three or more matching <code>-</code>, <code>_</code>, or <code>*</code> characters, each followed
optionally by any number of spaces or tabs, forms a
<a href="@">thematic break</a>.</p>
<pre><code class="language-example">***
---
___
.
<hr />
<hr />
<hr />
</code></pre>
<p>Wrong characters:</p>
<pre><code class="language-example">+++
.
<p>+++</p>
</code></pre>
<pre><code class="language-example">===
.
<p>===</p>
</code></pre>
<p>Not enough characters:</p>
<pre><code class="language-example">--
**
__
.
<p>--
**
__</p>
</code></pre>
<p>One to three spaces indent are allowed:</p>
<pre><code class="language-example"> ***
***
***
.
<hr />
<hr />
<hr />
</code></pre>
<p>Four spaces is too many:</p>
<pre><code class="language-example"> ***
.
<pre><code>***
</code></pre>
</code></pre>
<pre><code class="language-example">Foo
***
.
<p>Foo
***</p>
</code></pre>
<p>More than three characters may be used:</p>
<pre><code class="language-example">_____________________________________
.
<hr />
</code></pre>
<p>Spaces are allowed between the characters:</p>
<pre><code class="language-example"> - - -
.
<hr />
</code></pre>
<pre><code class="language-example"> ** * ** * ** * **
.
<hr />
</code></pre>
<pre><code class="language-example">- - - -
.
<hr />
</code></pre>
<p>Spaces are allowed at the end:</p>
<pre><code class="language-example">- - - -
.
<hr />
</code></pre>
<p>However, no other characters may occur in the line:</p>
<pre><code class="language-example">_ _ _ _ a
a------
---a---
.
<p>_ _ _ _ a</p>
<p>a------</p>
<p>---a---</p>
</code></pre>
<p>It is required that all of the [non-whitespace characters] be the same.
So, this is not a thematic break:</p>
<pre><code class="language-example"> *-*
.
<p><em>-</em></p>
</code></pre>
<p>Thematic breaks do not need blank lines before or after:</p>
<pre><code class="language-example">- foo
***
- bar
.
<ul>
<li>foo</li>
</ul>
<hr />
<ul>
<li>bar</li>
</ul>
</code></pre>
<p>Thematic breaks can interrupt a paragraph:</p>
<pre><code class="language-example">Foo
***
bar
.
<p>Foo</p>
<hr />
<p>bar</p>
</code></pre>
<p>If a line of dashes that meets the above conditions for being a
thematic break could also be interpreted as the underline of a [setext
heading], the interpretation as a
[setext heading] takes precedence. Thus, for example,
this is a setext heading, not a paragraph followed by a thematic break:</p>
<pre><code class="language-example">Foo
---
bar
.
<h2>Foo</h2>
<p>bar</p>
</code></pre>
<p>When both a thematic break and a list item are possible
interpretations of a line, the thematic break takes precedence:</p>
<pre><code class="language-example">* Foo
* * *
* Bar
.
<ul>
<li>Foo</li>
</ul>
<hr />
<ul>
<li>Bar</li>
</ul>
</code></pre>
<p>If you want a thematic break in a list item, use a different bullet:</p>
<pre><code class="language-example">- Foo
- * * *
.
<ul>
<li>Foo</li>
<li>
<hr />
</li>
</ul>
</code></pre>
<h2>ATX headings</h2>
<p>An <a href="@">ATX heading</a>
consists of a string of characters, parsed as inline content, between an
opening sequence of 1--6 unescaped <code>#</code> characters and an optional
closing sequence of any number of unescaped <code>#</code> characters.
The opening sequence of <code>#</code> characters must be followed by a
[space] or by the end of line. The optional closing sequence of <code>#</code>s must be
preceded by a [space] and may be followed by spaces only. The opening
<code>#</code> character may be indented 0-3 spaces. The raw contents of the
heading are stripped of leading and trailing spaces before being parsed
as inline content. The heading level is equal to the number of <code>#</code>
characters in the opening sequence.</p>
<p>Simple headings:</p>
<pre><code class="language-example"># foo
## foo
### foo
#### foo
##### foo
###### foo
.
<h1>foo</h1>
<h2>foo</h2>
<h3>foo</h3>
<h4>foo</h4>
<h5>foo</h5>
<h6>foo</h6>
</code></pre>
<p>More than six <code>#</code> characters is not a heading:</p>
<pre><code class="language-example">####### foo
.
<p>####### foo</p>
</code></pre>
<p>At least one space is required between the <code>#</code> characters and the
heading's contents, unless the heading is empty. Note that many
implementations currently do not require the space. However, the
space was required by the
<a href="http://www.aaronsw.com/2002/atx/atx.py">original ATX implementation</a>,
and it helps prevent things like the following from being parsed as
headings:</p>
<pre><code class="language-example">#5 bolt
#hashtag
.
<p>#5 bolt</p>
<p>#hashtag</p>
</code></pre>
<p>This is not a heading, because the first <code>#</code> is escaped:</p>
<pre><code class="language-example">\## foo
.
<p>## foo</p>
</code></pre>
<p>Contents are parsed as inlines:</p>
<pre><code class="language-example"># foo *bar* \*baz\*
.
<h1>foo <em>bar</em> *baz*</h1>
</code></pre>
<p>Leading and trailing [whitespace] is ignored in parsing inline content:</p>
<pre><code class="language-example"># foo
.
<h1>foo</h1>
</code></pre>
<p>One to three spaces indentation are allowed:</p>
<pre><code class="language-example"> ### foo
## foo
# foo
.
<h3>foo</h3>
<h2>foo</h2>
<h1>foo</h1>
</code></pre>
<p>Four spaces are too much:</p>
<pre><code class="language-example"> # foo
.
<pre><code># foo
</code></pre>
</code></pre>
<pre><code class="language-example">foo
# bar
.
<p>foo
# bar</p>
</code></pre>
<p>A closing sequence of <code>#</code> characters is optional:</p>
<pre><code class="language-example">## foo ##
### bar ###
.
<h2>foo</h2>
<h3>bar</h3>
</code></pre>
<p>It need not be the same length as the opening sequence:</p>
<pre><code class="language-example"># foo ##################################
##### foo ##
.
<h1>foo</h1>
<h5>foo</h5>
</code></pre>
<p>Spaces are allowed after the closing sequence:</p>
<pre><code class="language-example">### foo ###
.
<h3>foo</h3>
</code></pre>
<p>A sequence of <code>#</code> characters with anything but [spaces] following it
is not a closing sequence, but counts as part of the contents of the
heading:</p>
<pre><code class="language-example">### foo ### b
.
<h3>foo ### b</h3>
</code></pre>
<p>The closing sequence must be preceded by a space:</p>
<pre><code class="language-example"># foo#
.
<h1>foo#</h1>
</code></pre>
<p>Backslash-escaped <code>#</code> characters do not count as part
of the closing sequence:</p>
<pre><code class="language-example">### foo \###
## foo #\##
# foo \#
.
<h3>foo ###</h3>
<h2>foo ###</h2>
<h1>foo #</h1>
</code></pre>
<p>ATX headings need not be separated from surrounding content by blank
lines, and they can interrupt paragraphs:</p>
<pre><code class="language-example">****
## foo
****
.
<hr />
<h2>foo</h2>
<hr />
</code></pre>
<pre><code class="language-example">Foo bar
# baz
Bar foo
.
<p>Foo bar</p>
<h1>baz</h1>
<p>Bar foo</p>
</code></pre>
<p>ATX headings can be empty:</p>
<pre><code class="language-example">##
#
### ###
.
<h2></h2>
<h1></h1>
<h3></h3>
</code></pre>
<h2>Setext headings</h2>
<p>A <a href="@">setext heading</a> consists of one or more
lines of text, each containing at least one [non-whitespace
character], with no more than 3 spaces indentation, followed by
a [setext heading underline]. The lines of text must be such
that, were they not followed by the setext heading underline,
they would be interpreted as a paragraph: they cannot be
interpretable as a [code fence], [ATX heading][ATX headings],
[block quote][block quotes], [thematic break][thematic breaks],
[list item][list items], or [HTML block][HTML blocks].</p>
<p>A <a href="@">setext heading underline</a> is a sequence of
<code>=</code> characters or a sequence of <code>-</code> characters, with no more than 3
spaces indentation and any number of trailing spaces. If a line
containing a single <code>-</code> can be interpreted as an
empty [list items], it should be interpreted this way
and not as a [setext heading underline].</p>
<p>The heading is a level 1 heading if <code>=</code> characters are used in
the [setext heading underline], and a level 2 heading if <code>-</code>
characters are used. The contents of the heading are the result
of parsing the preceding lines of text as CommonMark inline
content.</p>
<p>In general, a setext heading need not be preceded or followed by a
blank line. However, it cannot interrupt a paragraph, so when a
setext heading comes after a paragraph, a blank line is needed between
them.</p>
<p>Simple examples:</p>
<pre><code class="language-example">Foo *bar*
=========
Foo *bar*
---------
.
<h1>Foo <em>bar</em></h1>
<h2>Foo <em>bar</em></h2>
</code></pre>
<p>The content of the header may span more than one line:</p>
<pre><code class="language-example">Foo *bar
baz*
====
.
<h1>Foo <em>bar
baz</em></h1>
</code></pre>
<p>The contents are the result of parsing the headings's raw
content as inlines. The heading's raw content is formed by
concatenating the lines and removing initial and final
[whitespace].</p>
<pre><code class="language-example"> Foo *bar
baz*→
====
.
<h1>Foo <em>bar
baz</em></h1>
</code></pre>
<p>The underlining can be any length:</p>
<pre><code class="language-example">Foo
-------------------------
Foo
=
.
<h2>Foo</h2>
<h1>Foo</h1>
</code></pre>
<p>The heading content can be indented up to three spaces, and need
not line up with the underlining:</p>
<pre><code class="language-example"> Foo
---
Foo
-----
Foo
===
.
<h2>Foo</h2>
<h2>Foo</h2>
<h1>Foo</h1>
</code></pre>
<p>Four spaces indent is too much:</p>
<pre><code class="language-example"> Foo
---
Foo
---
.
<pre><code>Foo
---
Foo
</code></pre>
<hr />
</code></pre>
<p>The setext heading underline can be indented up to three spaces, and
may have trailing spaces:</p>
<pre><code class="language-example">Foo
----
.
<h2>Foo</h2>
</code></pre>
<p>Four spaces is too much:</p>
<pre><code class="language-example">Foo
---
.
<p>Foo
---</p>
</code></pre>
<p>The setext heading underline cannot contain internal spaces:</p>
<pre><code class="language-example">Foo
= =
Foo
--- -
.
<p>Foo
= =</p>
<p>Foo</p>
<hr />
</code></pre>
<p>Trailing spaces in the content line do not cause a line break:</p>
<pre><code class="language-example">Foo
-----
.
<h2>Foo</h2>
</code></pre>
<p>Nor does a backslash at the end:</p>
<pre><code class="language-example">Foo\
----
.
<h2>Foo\</h2>
</code></pre>
<p>Since indicators of block structure take precedence over
indicators of inline structure, the following are setext headings:</p>
<pre><code class="language-example">`Foo
----
`
<a title="a lot
---
of dashes"/>
.
<h2>`Foo</h2>
<p>`</p>
<h2>&lt;a title=&quot;a lot</h2>
<p>of dashes&quot;/&gt;</p>
</code></pre>
<p>The setext heading underline cannot be a [lazy continuation
line] in a list item or block quote:</p>
<pre><code class="language-example">> Foo
---
.
<blockquote>
<p>Foo</p>
</blockquote>
<hr />
</code></pre>
<pre><code class="language-example">> foo
bar
===
.
<blockquote>
<p>foo
bar
===</p>
</blockquote>
</code></pre>
<pre><code class="language-example">- Foo
---
.
<ul>
<li>Foo</li>
</ul>
<hr />
</code></pre>
<p>A blank line is needed between a paragraph and a following
setext heading, since otherwise the paragraph becomes part
of the heading's content:</p>
<pre><code class="language-example">Foo
Bar
---
.
<h2>Foo
Bar</h2>
</code></pre>
<p>But in general a blank line is not required before or after
setext headings:</p>
<pre><code class="language-example">---
Foo
---
Bar
---
Baz
.
<hr />
<h2>Foo</h2>
<h2>Bar</h2>
<p>Baz</p>
</code></pre>
<p>Setext headings cannot be empty:</p>
<pre><code class="language-example">
====
.
<p>====</p>
</code></pre>
<p>Setext heading text lines must not be interpretable as block
constructs other than paragraphs. So, the line of dashes
in these examples gets interpreted as a thematic break:</p>
<pre><code class="language-example">---
---
.
<hr />
<hr />
</code></pre>
<pre><code class="language-example">- foo
-----
.
<ul>
<li>foo</li>
</ul>
<hr />
</code></pre>
<pre><code class="language-example"> foo
---
.
<pre><code>foo
</code></pre>
<hr />
</code></pre>
<pre><code class="language-example">> foo
-----
.
<blockquote>
<p>foo</p>
</blockquote>
<hr />
</code></pre>
<p>If you want a heading with <code>> foo</code> as its literal text, you can
use backslash escapes:</p>
<pre><code class="language-example">\> foo
------
.
<h2>&gt; foo</h2>
</code></pre>
<p><strong>Compatibility note:</strong> Most existing Markdown implementations
do not allow the text of setext headings to span multiple lines.
But there is no consensus about how to interpret</p>
<pre><code class="language-markdown">Foo
bar
---
baz
</code></pre>
<p>One can find four different interpretations:</p>
<ol>
<li>paragraph "Foo", heading "bar", paragraph "baz"</li>
<li>paragraph "Foo bar", thematic break, paragraph "baz"</li>
<li>paragraph "Foo bar --- baz"</li>
<li>heading "Foo bar", paragraph "baz"</li>
</ol>
<p>We find interpretation 4 most natural, and interpretation 4
increases the expressive power of CommonMark, by allowing
multiline headings. Authors who want interpretation 1 can
put a blank line after the first paragraph:</p>
<pre><code class="language-example">Foo
bar
---
baz
.
<p>Foo</p>
<h2>bar</h2>