This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/components/syntax_highlighting.js.coffee
2013-02-05 14:16:51 -05:00

9 lines
297 B
CoffeeScript

# Helper object for syntax highlighting. Uses highlight.js which is loaded
# on demand.
window.Discourse.SyntaxHighlighting =
apply: ($elem) ->
$('pre code[class]', $elem).each (i, e) =>
$LAB.script("/javascripts/highlight-handlebars.pack.js").wait ->
hljs.highlightBlock(e)