debian-mirror-gitlab/app/assets/javascripts/render_gfm.js

16 lines
452 B
JavaScript
Raw Normal View History

2017-08-17 22:00:37 +05:30
/* eslint-disable func-names, space-before-function-paren, consistent-return, no-var, no-else-return, prefer-arrow-callback, max-len */
// Render Gitlab flavoured Markdown
//
// Delegates to syntax highlight and render math
//
(function() {
$.fn.renderGFM = function() {
this.find('.js-syntax-highlight').syntaxHighlight();
this.find('.js-render-math').renderMath();
return this;
};
2017-09-10 17:25:29 +05:30
$(() => $('body').renderGFM());
2017-08-17 22:00:37 +05:30
}).call(window);