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
|
<p>On the number of spaces in horizontal rules: The spec is fuzzy: "If
you wish, you may use spaces between the hyphens or asterisks."
Markdown.pl 1.0.1's hr regexes limit the number of spaces between the
hr chars to one or two. We'll reproduce that limit here.</p>
<h1>no spaces</h1>
<hr />
<hr />
<hr />
<h1>one space</h1>
<hr />
<hr />
<hr />
<h1>one space with some leading space</h1>
<hr />
<hr />
<hr />
<h1>two spaces</h1>
<hr />
<hr />
<hr />
<h1>three spaces (these shouldn't be hr)</h1>
<p>- - -</p>
<p>* * *</p>
<p>_ _ _</p>
<h1>one or two spaces</h1>
<hr />
<hr />
<hr />
<h1>longer</h1>
<hr />
<hr />
<hr />
|