gitlab-org--gitlab-foss/app/assets/javascripts/render_gfm.js

16 lines
486 B
JavaScript
Raw Normal View History

2017-11-22 18:40:11 +00:00
import renderMath from './render_math';
import renderMermaid from './render_mermaid';
2017-12-13 09:26:44 +00:00
import syntaxHighlight from './syntax_highlight';
// Render Gitlab flavoured Markdown
//
2017-11-22 03:12:04 +00:00
// Delegates to syntax highlight and render math & mermaid diagrams.
//
$.fn.renderGFM = function renderGFM() {
2017-12-13 09:26:44 +00:00
syntaxHighlight(this.find('.js-syntax-highlight'));
2017-11-22 18:40:11 +00:00
renderMath(this.find('.js-render-math'));
renderMermaid(this.find('.js-render-mermaid'));
return this;
};
$(() => $('body').renderGFM());