Sha256: 63fa9fa587c51f466a232d6f2b90b65e66f7aced507ea51bf1394b5f82aac087
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
HTML::Pipeline.require_dependency("linguist", "SyntaxHighlightFilter") module HTML class Pipeline # HTML Filter that syntax highlights code blocks wrapped # in <pre lang="...">. class SyntaxHighlightFilter < Filter def call doc.search('pre').each do |node| default = context[:highlight] && context[:highlight].to_s next unless lang = node['lang'] || default next unless lexer = lexer_for(lang) text = node.inner_text html = highlight_with_timeout_handling(lexer, text) next if html.nil? if (node = node.replace(html).first) klass = node["class"] klass = [klass, "highlight-#{lang}"].compact.join " " node["class"] = klass end end doc end def highlight_with_timeout_handling(lexer, text) lexer.highlight(text) rescue Timeout::Error => boom nil end def lexer_for(lang) (Linguist::Language[lang] && Linguist::Language[lang].lexer) || Pygments::Lexer[lang] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
html-pipeline-2.7.1 | lib/html/pipeline/syntax_highlight_filter.rb |