Fixed bug with syntax highlighting when importing from URL

This commit is contained in:
unknown
2018-09-05 11:16:01 -06:00
parent 27dcf6d8bf
commit 1fddfb3f17

View File

@@ -102,7 +102,7 @@ public class MarkdownFromURLMacro extends BaseMacro implements Macro
String highlightjs = "<script>\n" +
"AJS.$('[data-macro-name=\"markdown\"] code').each(function(i, block) {\n" +
"AJS.$('[data-macro-name=\"markdown-from-url\"] code').each(function(i, block) {\n" +
" hljs.highlightBlock(block);\n" +
" });\n" +
"</script>";