1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Merge pull request #2542 from fnkr/fix-markdown-code-blocks-issue-comment-save

Fix syntax highlighting for markdown code blocks on issue description/comment save
This commit is contained in:
Unknwon
2016-02-01 18:12:17 -05:00

View File

@@ -385,6 +385,9 @@ function initRepository() {
} else {
$render_content.html(data.content);
emojify.run($render_content[0]);
$('pre code', $render_content[0]).each(function(i, block) {
hljs.highlightBlock(block);
});
}
});
});