diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-01-11 20:24:20 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-01-11 20:24:20 -0800 |
commit | 0c0ae7a0962a7dce1b3328d95d96b9fde6c6cc52 (patch) | |
tree | a553fd2997c8e762b648f957e7b50b7025ed77ec /src | |
parent | eea23326c89875d6737e6bbeec7f7b201ed36d03 (diff) |
xml format: use 'destination' instead of 'url', like the spec.
Diffstat (limited to 'src')
-rw-r--r-- | src/xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -113,7 +113,7 @@ S_render_node(cmark_node *node, cmark_event_type ev_type, break; case CMARK_NODE_LINK: case CMARK_NODE_IMAGE: - cmark_strbuf_puts(xml, " url=\""); + cmark_strbuf_puts(xml, " destination=\""); escape_xml(xml, node->as.link.url, -1); cmark_strbuf_putc(xml, '"'); cmark_strbuf_puts(xml, " title=\""); |