File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ static bool S_put_footnote_backref(cmark_html_renderer *renderer, cmark_strbuf *
65
65
renderer -> written_footnote_ix = renderer -> footnote_ix ;
66
66
char m [32 ];
67
67
snprintf (m , sizeof (m ), "%d" , renderer -> written_footnote_ix );
68
-
68
+
69
69
cmark_strbuf_puts (html , "<a href=\"#fnref-" );
70
70
houdini_escape_href (html , node -> as .literal .data , node -> as .literal .len );
71
71
cmark_strbuf_puts (html , "\" class=\"footnote-backref\" data-footnote-backref aria-label=\"Back to reference " );
@@ -83,7 +83,7 @@ static bool S_put_footnote_backref(cmark_html_renderer *renderer, cmark_strbuf *
83
83
cmark_strbuf_puts (html , "-" );
84
84
cmark_strbuf_puts (html , n );
85
85
cmark_strbuf_puts (html , "\" class=\"footnote-backref\" data-footnote-backref aria-label=\"Back to reference " );
86
- houdini_escape_href (html , node -> as . literal . data , node -> as . literal . len );
86
+ cmark_strbuf_puts (html , m );
87
87
cmark_strbuf_puts (html , "-" );
88
88
cmark_strbuf_puts (html , n );
89
89
cmark_strbuf_puts (html , "\">↩<sup class=\"footnote-ref\">" );
You can’t perform that action at this time.
0 commit comments