import renderMath from './render_math'; import renderMermaid from './render_mermaid'; // Render Gitlab flavoured Markdown // // Delegates to syntax highlight and render math & mermaid diagrams. // $.fn.renderGFM = function renderGFM() { this.find('.js-syntax-highlight').syntaxHighlight(); renderMath(this.find('.js-render-math')); renderMermaid(this.find('.js-render-mermaid')); return this; }; $(() => $('body').renderGFM());