diff options
author | Florian Kaiser <florian.kaiser@fnkr.net> | 2016-02-01 19:52:47 +0000 |
---|---|---|
committer | Florian Kaiser <florian.kaiser@fnkr.net> | 2016-02-01 19:53:58 +0000 |
commit | 3e0a27157c8a87d8da166530f290260264185b4e (patch) | |
tree | 09971bc14792e832e1abbe279e57d1493bdba488 /public/js | |
parent | 3abad75a1bb4b2c207cb5c0ce09295369d65bf9a (diff) | |
download | gitea-3e0a27157c8a87d8da166530f290260264185b4e.tar.gz gitea-3e0a27157c8a87d8da166530f290260264185b4e.zip |
Make highlighted markdown code blocks work on issue pages
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/gogs.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/public/js/gogs.js b/public/js/gogs.js index f979df0762..6c00d27764 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -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); + }); } ); }); |