diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-12-28 17:12:40 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-12-28 17:12:40 -0800 |
commit | dd1c58355f69a5fb3ab6fc90a32f48c8a9913176 (patch) | |
tree | 3150bc0b90f60090dfc7d53fdcf66d40f677818e /CommonMark.dtd | |
parent | b50a2cd618802543e01f46bffb4b19d5bd5b4ba6 (diff) |
Rename CMARK_NODE_LIST_ITEM -> CMARK_NODE_ITEM.
Diffstat (limited to 'CommonMark.dtd')
-rw-r--r-- | CommonMark.dtd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CommonMark.dtd b/CommonMark.dtd index 2f6bdfa..d01b88f 100644 --- a/CommonMark.dtd +++ b/CommonMark.dtd @@ -3,13 +3,13 @@ (block_quote|list|code_block|html|paragraph|header|hrule)*> <!ELEMENT block_quote (block_quote|list|code_block|html|paragraph|header|hrule)*> -<!ELEMENT list (list_item)+> +<!ELEMENT list (item)+> <!ATTLIST list type (bullet|ordered) #REQUIRED start CDATA #IMPLIED tight (true|false) #REQUIRED delimiter (period|paren) #IMPLIED> -<!ELEMENT list_item +<!ELEMENT item (block_quote|list|code_block|html|paragraph|header|hrule)*> <!ELEMENT code_block (#PCDATA)> <!ATTLIST code_block |