index
:
cmark
master
My own fork of cmark for commonmark conversion
KatolaZ
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
man.c
Age
Commit message (
Expand
)
Author
2016-01-18
Merge branch 'master' of https://github.com/mbenelli/cmark into mbenelli-master
John MacFarlane
2015-12-28
Rename NODE_HTML -> NODE_HTML_BLOCK, NODE_INLINE_HTML -> NODE_HTML_INLINE.
John MacFarlane
2015-12-22
Rename hrule -> thematic_break.
John MacFarlane
2015-12-22
CMARK_NODE_HEADER -> CMARK_NODE_HEADING.
John MacFarlane
2015-12-22
Rename 'header' -> 'heading'.
John MacFarlane
2015-12-19
Changed API for CUSTOM_BLOCK and CUSTOM_INLINE.
John MacFarlane
2015-12-19
Rename RAW_BLOCK -> CUSTOM_BLOCK, RAW_INLINE -> CUSTOM_INLINE.
John MacFarlane
2015-12-19
Added RAW_BLOCK and RAW_INLINE node types.
John MacFarlane
2015-11-02
Replaced sprintf with snprintf.
Marco Benelli
2015-07-27
Use clang-format, llvm style, for formatting.
John MacFarlane
2015-07-14
astyle reformatting.
John MacFarlane
2015-07-12
Small cleanups.
John MacFarlane
2015-07-12
Added cmark_render_code_point.
John MacFarlane
2015-07-12
man renderer: Use ASCII not LIT in outc.
John MacFarlane
2015-07-12
man renderer: Fixed character escaping, use new cmark_render_ascii.
John MacFarlane
2015-07-12
Added width parameter to render_man.
John MacFarlane
2015-04-15
Check return status of utf8proc_iterate. Closes #27.
John MacFarlane
2015-03-03
astyle changes.
John MacFarlane
2015-02-16
Made 'options' an int rather than a long.
John MacFarlane
2015-02-15
Fixed man escaping for unicode characters.
John MacFarlane
2015-02-15
Proper escaping of smart punctuation in man writer.
John MacFarlane
2015-02-15
Moved handling of --smart from renderer to parser.
John MacFarlane
2015-02-15
Implemented --smart for man output.
John MacFarlane
2015-01-21
Removed unnecessary strbuf_free's.
John MacFarlane
2015-01-19
Man writer: ensure we properly escape multiline strings.
John MacFarlane
2015-01-05
Reformatted code consistently with astyle.
John MacFarlane
2014-12-31
Remove useless void* cast
Nick Wellnhofer
2014-12-30
Revert "man: use a variable to store the char * from node_get_url."
John MacFarlane
2014-12-30
man: use a variable to store the char * from node_get_url.
John MacFarlane
2014-12-29
Avoid warning about unused options parameter in man writer.
John MacFarlane
2014-12-29
Added options parameter to renderers.
John MacFarlane
2014-12-28
Rename CMARK_NODE_LIST_ITEM -> CMARK_NODE_ITEM.
John MacFarlane
2014-12-16
Added 'literal' field to 'code' struct.
John MacFarlane
2014-12-15
Re-added cmark_ prefix to strbuf and chunk.
John MacFarlane
2014-12-14
man writer: use chunk literal in code blocks.
John MacFarlane
2014-12-14
Added empty clauses for DOCUMENT node to html and man writers.
John MacFarlane
2014-12-14
Rename CMARK_NODE_INLINE_CODE -> CMARK_NODE_CODE.
John MacFarlane
2014-12-13
Added cmark_render_man (man page writer).
John MacFarlane