Welcome to mirror list, hosted at ThFree Co, Russian Federation.

render_gfm.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0caf8ba4344ab477e343ef7a10861d818feb90da (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 page:load', function() {
    return $('body').renderGFM();
  });
}).call(this);