forked from forgejo/forgejo
Make highlighted markdown code blocks work on issue pages
This commit is contained in:
parent
3abad75a1b
commit
3e0a27157c
2 changed files with 8 additions and 0 deletions
|
@ -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);
|
||||
});
|
||||
}
|
||||
);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue