Skip to content
Snippets Groups Projects
Commit b16f202b authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Fix rendering of code with <hlcode>

Markdown generated for <hlcode> did not conform to the Commonmark spec
and was not compatible with marked 0.6+.

Fixes arsnova#101.
Fixes GH-89.
parent e3e52868
1 merge request!86Fix rendering of code with <hlcode>
Pipeline #25259 passed with stages
in 1 minute and 25 seconds
......@@ -60,7 +60,7 @@ Ext.define('ARSnova.view.MathJaxMarkDownPanel', {
var replaceCodeBlockFromContent = function (content) {
return content.replace(/<hlcode>([\s\S]*?)<\/hlcode>/g, function (element) {
var codeBlockMatch = element.match(/^<hlcode>\s*([\s\S]*?)\s*<\/hlcode>$/)[1];
return "\n```auto\n" + codeBlockMatch + "```\n";
return "\n```auto\n" + codeBlockMatch + "\n```\n";
});
};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment