From f5a456175cfde7bad10fad96e9fa17d357c8244a Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 6 Sep 2014 19:41:51 -0700 Subject: Adjusted HTML output for fenced code to match #71 change. --- src/html.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/html.c b/src/html.c index 56d5dbb..aeec5f1 100644 --- a/src/html.c +++ b/src/html.c @@ -156,15 +156,15 @@ extern int blocks_to_html(block* b, bstring* result, bool tight) case fenced_code: escaped = escape_html(b->string_content, false); cr(html); - bformata(html, "attributes.fenced_code_data.info) > 0) { escaped2 = escape_html(b->attributes.fenced_code_data.info, true); info_words = bsplit(escaped2, ' '); - bformata(html, " class=\"%s\"", info_words->entry[0]->data); + bformata(html, " class=\"language-%s\"", info_words->entry[0]->data); bdestroy(escaped2); bstrListDestroy(info_words); } - bformata(html, ">%s", escaped->data); + bformata(html, ">%s", escaped->data); cr(html); bdestroy(escaped); break; -- cgit v1.2.3