module Rouge::Plugins::Redcarpet

Public Instance Methods

block_code(code, language) click to toggle source
# File lib/rouge/plugins/redcarpet.rb, line 10
def block_code(code, language)
  lexer =
    begin
      Lexer.find_fancy(language, code)
    rescue Guesser::Ambiguous => e
      e.alternatives.first
    end
  lexer ||= Lexers::PlainText

  # XXX HACK: Redcarpet strips hard tabs out of code blocks,
  # so we assume you're not using leading spaces that aren't tabs,
  # and just replace them here.
  if lexer.tag == 'make'
    code.gsub! %r/^    /, "\t"
  end

  formatter = rouge_formatter(lexer)
  formatter.format(lexer.lex(code))
end
rouge_formatter(lexer) click to toggle source

override this method for custom formatting behavior

# File lib/rouge/plugins/redcarpet.rb, line 31
def rouge_formatter(lexer)
  Formatters::HTMLLegacy.new(:css_class => "highlight #{lexer.tag}")
end