aboutsummaryrefslogtreecommitdiff
path: root/CommonMark.dtd
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-12-22 22:26:33 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-12-22 22:28:27 -0800
commit8fa94cb460f5e516b0e57adca33f50a669d51f6c (patch)
tree38b6abf9df552e091c88bee422008be5731bf795 /CommonMark.dtd
parentfb64514e6728779165ba1d0ff06b68badaa3742c (diff)
Rename 'horizontal rule' -> 'thematic break'.
This matches the HTML5 meaning for the hr element, and recognizes that the element may be rendered in various ways (not always as a horizontal rule). See http://talk.commonmark.org/t/horizontal-rule-or-thematic-break/912/3 IN the DTD hrule is renamed 'thematic_break'.
Diffstat (limited to 'CommonMark.dtd')
-rw-r--r--CommonMark.dtd4
1 files changed, 2 insertions, 2 deletions
diff --git a/CommonMark.dtd b/CommonMark.dtd
index 9e8aeda..17aa83e 100644
--- a/CommonMark.dtd
+++ b/CommonMark.dtd
@@ -1,7 +1,7 @@
<!-- DTD for CommonMark xml export format -->
<!ENTITY % block
- 'block_quote|list|code_block|html|paragraph|heading|hrule'>
+ 'block_quote|list|code_block|html|paragraph|heading|thematic_break'>
<!ENTITY % inline
'text|softbreak|linebreak|code|inline_html|emph|strong|link|image'>
@@ -35,7 +35,7 @@
<!ATTLIST heading
level (1|2|3|4|5|6) #REQUIRED>
-<!ELEMENT hrule EMPTY>
+<!ELEMENT thematic_break EMPTY>
<!-- inline elements -->