From: Fletcher T. Penney Date: Mon, 6 Mar 2017 14:11:40 +0000 (-0500) Subject: FIXED: Fix missing token type X-Git-Tag: 6.0.0-b1^2~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a1e0c85a484f73f0d3bf3744142721912a5d048c;p=multimarkdown FIXED: Fix missing token type --- diff --git a/Sources/libMultiMarkdown/latex.c b/Sources/libMultiMarkdown/latex.c index f72d32c..b2a09b4 100644 --- a/Sources/libMultiMarkdown/latex.c +++ b/Sources/libMultiMarkdown/latex.c @@ -766,6 +766,9 @@ void mmd_export_token_latex(DString * out, const char * source, token * t, scrat case BRACKET_LEFT: print_const("["); break; + case BRACKET_ABBREVIATION_LEFT: + print_const("[>"); + break; case BRACKET_CITATION_LEFT: print_const("[#"); break;