Skip to content

Commit

Permalink
Clarified tab usage in thematic breaks.
Browse files Browse the repository at this point in the history
Closes #410.
  • Loading branch information
jgm committed Jun 27, 2016
1 parent 813d7e3 commit 5ca9ca1
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions spec.txt
Expand Up @@ -499,7 +499,7 @@ Markdown document.

A line consisting of 0-3 spaces of indentation, followed by a sequence
of three or more matching `-`, `_`, or `*` characters, each followed
optionally by any number of spaces, forms a
optionally by any number of spaces or tabs, forms a
[thematic break](@).

```````````````````````````````` example
Expand Down Expand Up @@ -615,6 +615,15 @@ Spaces are allowed at the end:
````````````````````````````````


Tabs are allowed both between and after the characters:

```````````````````````````````` example
-→-→-→-→
.
<hr />
````````````````````````````````


However, no other characters may occur in the line:

```````````````````````````````` example
Expand All @@ -630,8 +639,8 @@ a------
````````````````````````````````


It is required that all of the [non-whitespace characters] be the same.
So, this is not a thematic break:
It is required that all of the characters (besides spaces and
tabs) be the same. So, this is not a thematic break:

```````````````````````````````` example
*-*
Expand Down

0 comments on commit 5ca9ca1

Please sign in to comment.