Make highlighted markdown code blocks work on issue pages

This commit is contained in:
Florian Kaiser 2016-02-01 19:52:47 +00:00
parent 3abad75a1b
commit 3e0a27157c
2 changed files with 8 additions and 0 deletions

View file

@ -18,6 +18,9 @@ function initCommentPreviewTab($form) {
var $preview_tab = $form.find('.tab.segment[data-tab="' + $tab_menu.data('preview') + '"]');
$preview_tab.html(data);
emojify.run($preview_tab[0]);
$('pre code', $preview_tab[0]).each(function(i, block) {
hljs.highlightBlock(block);
});
}
);
});