summaryrefslogtreecommitdiff
path: root/man/man3
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2016-12-30 18:45:36 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2016-12-30 18:45:36 -0700
commit26182bb868d3da7dd8a3389729bea79d489855b7 (patch)
treebd933bc5bba3b8fa49ad476fb8fa08cb955f1612 /man/man3
parent4fbe344df43ed7f60a3d3a53981088334cb709fc (diff)
Update cmark.3 man page.
Diffstat (limited to 'man/man3')
-rw-r--r--man/man3/cmark.377
1 files changed, 72 insertions, 5 deletions
diff --git a/man/man3/cmark.3 b/man/man3/cmark.3
index eb38812..5423d16 100644
--- a/man/man3/cmark.3
+++ b/man/man3/cmark.3
@@ -1,4 +1,4 @@
-.TH cmark 3 "November 18, 2016" "LOCAL" "Library Functions Manual"
+.TH cmark 3 "December 30, 2016" "LOCAL" "Library Functions Manual"
.SH
NAME
.PP
@@ -16,7 +16,7 @@ Simple Interface
Convert \f[I]text\f[] (assumed to be a UTF\-8 encoded string with length
\f[I]len\f[]) from CommonMark Markdown to HTML, returning a
null\-terminated, UTF\-8\-encoded string. It is the caller's
-responsibility to free the returned buffer.
+responsibility to free the returned buffer. Returns NULL on error.
.SS
Node Structure
@@ -70,6 +70,30 @@ typedef enum {
\fC
.RS 0n
typedef enum {
+ CMARK_EXTENT_NONE,
+ CMARK_EXTENT_OPENER,
+ CMARK_EXTENT_CLOSER,
+ CMARK_EXTENT_BLANK,
+ CMARK_EXTENT_CONTENT,
+ CMARK_EXTENT_PUNCTUATION,
+ CMARK_EXTENT_LINK_DESTINATION,
+ CMARK_EXTENT_LINK_TITLE,
+ CMARK_EXTENT_LINK_LABEL,
+ CMARK_EXTENT_REFERENCE_DESTINATION,
+ CMARK_EXTENT_REFERENCE_LABEL,
+ CMARK_EXTENT_REFERENCE_TITLE,
+} cmark_extent_type;
+.RE
+\f[]
+.fi
+
+
+
+.PP
+.nf
+\fC
+.RS 0n
+typedef enum {
CMARK_NO_LIST,
CMARK_BULLET_LIST,
CMARK_ORDERED_LIST
@@ -95,6 +119,21 @@ typedef enum {
+.PP
+.nf
+\fC
+.RS 0n
+typedef enum {
+ CMARK_ERR_NONE,
+ CMARK_ERR_OUT_OF_MEMORY,
+ CMARK_ERR_INPUT_TOO_LARGE
+} cmark_err_type;
+.RE
+\f[]
+.fi
+
+
+
.SS
Custom memory allocator support
@@ -115,6 +154,12 @@ typedef struct cmark_mem {
Defines the memory allocation functions to be used by CMark when parsing
and allocating a document tree
+.PP
+\fIvoid\f[] \fBcmark_default_mem_free\f[](\fIvoid *ptr\f[])
+
+.PP
+Convenience function for bindings.
+
.SS
Creating and Destroying Nodes
@@ -603,6 +648,18 @@ Creates a new parser object with the given memory allocator
Frees memory allocated for a parser object.
.PP
+\fIcmark_err_type\f[] \fBcmark_parser_get_error\f[](\fIcmark_parser *parser\f[])
+
+.PP
+Return the error code after a failed operation.
+
+.PP
+\fIconst char *\f[] \fBcmark_parser_get_error_message\f[](\fIcmark_parser *parser\f[])
+
+.PP
+Return the error code after a failed operation.
+
+.PP
\fIvoid\f[] \fBcmark_parser_feed\f[](\fIcmark_parser *parser\f[], \fIconst char *buffer\f[], \fIsize_t len\f[])
.PP
@@ -612,7 +669,13 @@ Feeds a string of length \f[I]len\f[] to \f[I]parser\f[].
\fIcmark_node *\f[] \fBcmark_parser_finish\f[](\fIcmark_parser *parser\f[])
.PP
-Finish parsing and return a pointer to a tree of nodes.
+Finish parsing and return a pointer to a tree of nodes or NULL on error.
+
+.PP
+\fIcmark_source_extent *\f[] \fBcmark_parser_get_first_source_extent\f[](\fIcmark_parser *parser\f[])
+
+.PP
+Return a pointer to the first extent of the parser's source map
.PP
\fIcmark_node *\f[] \fBcmark_parse_document\f[](\fIconst char *buffer\f[], \fIsize_t len\f[], \fIint options\f[])
@@ -621,7 +684,7 @@ Finish parsing and return a pointer to a tree of nodes.
Parse a CommonMark document in \f[I]buffer\f[] of length \f[I]len\f[].
Returns a pointer to a tree of nodes. The memory allocated for the node
tree should be released using \f[I]cmark_node_free\f[] when it is no
-longer needed.
+longer needed. Returns NULL on error.
.PP
\fIcmark_node *\f[] \fBcmark_parse_file\f[](\fIFILE *f\f[], \fIint options\f[])
@@ -629,7 +692,11 @@ longer needed.
.PP
Parse a CommonMark document in file \f[I]f\f[], returning a pointer to a
tree of nodes. The memory allocated for the node tree should be released
-using \f[I]cmark_node_free\f[] when it is no longer needed.
+using \f[I]cmark_node_free\f[] when it is no longer needed. Returns NULL
+on error.
+
+.SS
+Source map API
.SS
Rendering