summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/render_gfm.js
blob: bdbad93ad04b5348c4ed7094f8340f18af63d847 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* eslint-disable func-names, space-before-function-paren, consistent-return, no-var, no-undef, 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();
  };

  $(document).on('ready load', function() {
    return $('body').renderGFM();
  });
}).call(this);