Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
kramdown/lib/kramdown/converter/syntax_highlighter/rouge.rb
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
74 lines (61 sloc)
2.11 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# | |
#-- | |
# Copyright (C) 2009-2016 Thomas Leitner <t_leitner@gmx.at> | |
# | |
# This file is part of kramdown which is licensed under the MIT. | |
#++ | |
# | |
module Kramdown::Converter::SyntaxHighlighter | |
# Uses Rouge which is CSS-compatible to Pygments to highlight code blocks and code spans. | |
module Rouge | |
begin | |
require 'rouge' | |
# Highlighting via Rouge is available if this constant is +true+. | |
AVAILABLE = true | |
rescue LoadError, SyntaxError | |
AVAILABLE = false # :nodoc: | |
end | |
def self.call(converter, text, lang, type, call_opts) | |
opts = options(converter, type) | |
call_opts[:default_lang] = opts[:default_lang] | |
lexer = ::Rouge::Lexer.find_fancy(lang || opts[:default_lang], text) | |
return nil if opts[:disable] || !lexer | |
opts[:css_class] ||= 'highlight' # For backward compatibility when using Rouge 2.0 | |
formatter = formatter_class(opts).new(opts) | |
formatter.format(lexer.lex(text)) | |
end | |
def self.options(converter, type) | |
prepare_options(converter) | |
converter.data[:syntax_highlighter_rouge][type] | |
end | |
def self.prepare_options(converter) | |
return if converter.data.key?(:syntax_highlighter_rouge) | |
cache = converter.data[:syntax_highlighter_rouge] = {} | |
opts = converter.options[:syntax_highlighter_opts].dup | |
span_opts = (opts.delete(:span) || {}).dup | |
block_opts = (opts.delete(:block) || {}).dup | |
[span_opts, block_opts].each do |hash| | |
hash.keys.each do |k| | |
hash[k.kind_of?(String) ? Kramdown::Options.str_to_sym(k) : k] = hash.delete(k) | |
end | |
end | |
cache[:span] = opts.merge(span_opts).update(:wrap => false) | |
cache[:block] = opts.merge(block_opts) | |
end | |
def self.formatter_class(opts = {}) | |
case formatter = opts[:formatter] | |
when Class | |
formatter | |
when /\A[[:upper:]][[:alnum:]_]*\z/ | |
::Rouge::Formatters.const_get(formatter) | |
else | |
# Available in Rouge 2.0 or later | |
::Rouge::Formatters::HTMLLegacy | |
end | |
rescue NameError | |
# Fallback to Rouge 1.x | |
::Rouge::Formatters::HTML | |
end | |
end | |
end |