diff options
| -rw-r--r-- | CommonMark.dtd | 2 | ||||
| -rw-r--r-- | src/xml.c | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/CommonMark.dtd b/CommonMark.dtd index 9b3deaf..27de97a 100644 --- a/CommonMark.dtd +++ b/CommonMark.dtd @@ -59,7 +59,7 @@  <!ELEMENT link (%inline;)*>  <!ATTLIST link -          url CDATA #REQUIRED +          destination CDATA #REQUIRED            title CDATA #IMPLIED>  <!ELEMENT image (%inline;)*> @@ -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=\"");  | 
