diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-12-28 11:46:33 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-12-28 11:46:33 -0800 |
commit | 6e599f2ceb8ca1aee0cdb47d37aba16ac5938641 (patch) | |
tree | a7c47bf8e9272a1123b42f9fb45510cdb6694627 /man | |
parent | 6db3cb40add3800246bee8cd051baf4243e8ae44 (diff) |
Rename NODE_HTML -> NODE_HTML_BLOCK, NODE_INLINE_HTML -> NODE_HTML_INLINE.
API change. Sorry, but this is the time to break things,
before 1.0 is released. This matches the recent changes to
CommonMark.dtd.
Diffstat (limited to 'man')
-rw-r--r-- | man/man3/cmark.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/man/man3/cmark.3 b/man/man3/cmark.3 index 0341b6d..9d619fb 100644 --- a/man/man3/cmark.3 +++ b/man/man3/cmark.3 @@ -1,4 +1,4 @@ -.TH cmark 3 "December 23, 2015" "LOCAL" "Library Functions Manual" +.TH cmark 3 "December 28, 2015" "LOCAL" "Library Functions Manual" .SH NAME .PP @@ -110,7 +110,7 @@ usage_example(cmark_node *root) { Iterators will never return \f[C]EXIT\f[] events for leaf nodes, which are nodes of type: .IP \[bu] 2 -CMARK_NODE_HTML +CMARK_NODE_HTML_BLOCK .IP \[bu] 2 CMARK_NODE_THEMATIC_BREAK .IP \[bu] 2 @@ -124,7 +124,7 @@ CMARK_NODE_LINEBREAK .IP \[bu] 2 CMARK_NODE_CODE .IP \[bu] 2 -CMARK_NODE_INLINE_HTML +CMARK_NODE_HTML_INLINE .PP Nodes must only be modified after an \f[C]EXIT\f[] event, or an \f[C]ENTER\f[] event for leaf nodes. |