diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2015-12-23 08:19:22 -0800 | 
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2015-12-23 08:19:22 -0800 | 
| commit | 050ef111b02691679c2eb825102a3508630f0a55 (patch) | |
| tree | 57f3136b832f56382801bf14a0388149a9ddb476 /src | |
| parent | b59da4fc9c35b9def682294de1c521b32cd859e9 (diff) | |
Added version number to XML namespace.
1.0 - looking forward.  We don't guarantee stability in
this until 1.0 is actually released, however.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xml.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -51,7 +51,7 @@ static int S_render_node(cmark_node *node, cmark_event_type ev_type,      switch (node->type) {      case CMARK_NODE_DOCUMENT: -      cmark_strbuf_puts(xml, " xmlns=\"http://commonmark.org/xml/\""); +      cmark_strbuf_puts(xml, " xmlns=\"http://commonmark.org/xml/1.0\"");        break;      case CMARK_NODE_TEXT:      case CMARK_NODE_CODE: | 
