diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-02-15 18:26:35 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-02-15 18:26:35 -0800 |
commit | 376f81ab8aa017ab01040e10d393d7682674562d (patch) | |
tree | c6a9c8982f76df9afcc42f3822e339701a08f3c6 /man/man3 | |
parent | 982ba5a528111dbf647e90f412498e315fcf432c (diff) |
Added options parameter to cmark_parse_document, cmark_parse_file.
Also to some non-exported functions in blocks and inlines.
Diffstat (limited to 'man/man3')
-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 c8fc4c7..c485bfb 100644 --- a/man/man3/cmark.3 +++ b/man/man3/cmark.3 @@ -1,4 +1,4 @@ -.TH cmark 3 "February 14, 2015" "LOCAL" "Library Functions Manual" +.TH cmark 3 "February 15, 2015" "LOCAL" "Library Functions Manual" .SH NAME .PP @@ -437,14 +437,14 @@ Feeds a string of length \f[I]len\f[] to \f[I]parser\f[]\&. Finish parsing and return a pointer to a tree of nodes. .PP -\fIcmark_node *\f[] \fBcmark_parse_document\f[](\fIconst char *buffer\f[], \fIsize_t len\f[]) +\fIcmark_node *\f[] \fBcmark_parse_document\f[](\fIconst char *buffer\f[], \fIsize_t len\f[], \fIlong options\f[]) .PP Parse a CommonMark document in \f[I]buffer\f[] of length \f[I]len\f[]\&. Returns a pointer to a tree of nodes. .PP -\fIcmark_node *\f[] \fBcmark_parse_file\f[](\fIFILE *f\f[]) +\fIcmark_node *\f[] \fBcmark_parse_file\f[](\fIFILE *f\f[], \fIlong options\f[]) .PP Parse a CommonMark document in file \f[I]f\f[], returning a pointer to |