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
/
xml.c
Age
Commit message (
Expand
)
Author
2016-06-06
cmark: Implement support for custom allocators
Vicent Marti
2016-03-12
Don't use variable length arrays
Nick Wellnhofer
2016-03-12
Switch from "inline" to "CMARK_INLINE"
Nick Wellnhofer
2016-01-18
Merge branch 'master' of https://github.com/mbenelli/cmark into mbenelli-master
John MacFarlane
2015-12-28
Reformat sources.
John MacFarlane
2015-12-28
Rename NODE_HTML -> NODE_HTML_BLOCK, NODE_INLINE_HTML -> NODE_HTML_INLINE.
John MacFarlane
2015-12-23
Added version number to XML namespace.
John MacFarlane
2015-12-22
CMARK_NODE_HEADER -> CMARK_NODE_HEADING.
John MacFarlane
2015-12-22
Rename 'header' -> 'heading'.
John MacFarlane
2015-12-22
xml renderer - Added xmlns attribute to document node.
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-10-19
Fixed DOCTYPE in xml output.
John MacFarlane
2015-07-27
Use clang-format, llvm style, for formatting.
John MacFarlane
2015-07-25
xml renderer - use sprintf to avoid strbuf_sprintf.
John MacFarlane
2015-07-25
Avoid using strbuf_printf when not needed.
John MacFarlane
2015-06-07
Avoid strlen in xml.c
Nick Wellnhofer
2015-06-07
Convert code base to strbuf_t
Nick Wellnhofer
2015-06-06
astyle formatting changes.
John MacFarlane
2015-05-14
Store link URL and title as cmark_chunk
Nick Wellnhofer
2015-02-16
Made 'options' an int rather than a long.
John MacFarlane
2015-02-15
Moved normalization step from XML renderer to main.
John MacFarlane
2015-01-21
Removed unnecessary strbuf_free's.
John MacFarlane
2015-01-12
Some astyle reformatting.
John MacFarlane
2015-01-11
xml.c: Include level attribute in header.
John MacFarlane
2015-01-11
xml format: use 'destination' instead of 'url', like the spec.
John MacFarlane
2015-01-09
Minor code reformatting.
John MacFarlane
2015-01-09
xml writer: add list attributes.
John MacFarlane
2015-01-07
cmark: Add function & option to normalize text nodes.
John MacFarlane
2015-01-05
Reformatted code consistently with astyle.
John MacFarlane
2015-01-04
xml writer - fixed issues with empty images.
John MacFarlane
2014-12-31
Remove useless void* cast
Nick Wellnhofer
2014-12-29
Make `--sourcepos` affect xml writer too.
John MacFarlane
2014-12-29
Added options parameter to renderers.
John MacFarlane
2014-12-28
Added end_column to cmark_node struct.
John MacFarlane
2014-12-28
Revamped xml writer and dtd to use lowercase element names.
John MacFarlane
2014-12-28
Added xml writer, to dump the AST in XML.
John MacFarlane