summaryrefslogtreecommitdiff
path: root/man/man3/cmark.3
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-12-28 11:46:33 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-12-28 11:46:33 -0800
commit6e599f2ceb8ca1aee0cdb47d37aba16ac5938641 (patch)
treea7c47bf8e9272a1123b42f9fb45510cdb6694627 /man/man3/cmark.3
parent6db3cb40add3800246bee8cd051baf4243e8ae44 (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/man3/cmark.3')
-rw-r--r--man/man3/cmark.36
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.