Fix bug rendering footnotes

This commit is contained in:
Devin Torres 2013-09-25 20:04:10 -05:00
parent 3d0599d959
commit 92948cc1b9

View file

@ -528,7 +528,7 @@ rndr_footnotes(struct hoedown_buffer *ob, const struct hoedown_buffer *text, voi
if (ob->size) hoedown_buffer_putc(ob, '\n'); if (ob->size) hoedown_buffer_putc(ob, '\n');
BUFPUTSL(ob, "<div class=\"footnotes\">\n"); BUFPUTSL(ob, "<div class=\"footnotes\">\n");
BUFPUTSL(ob, (USE_XHTML(options) ? "<hr/>\n" : "<hr>\n")); hoedown_buffer_puts(ob, USE_XHTML(options) ? "<hr/>\n" : "<hr>\n");
BUFPUTSL(ob, "<ol>\n"); BUFPUTSL(ob, "<ol>\n");
if (text) if (text)