Module: Jekyll::Converters::Markdown::RedcarpetParser::WithPygments
- Includes:
- CommonMethods
- Defined in:
- lib/jekyll/converters/markdown/redcarpet_parser.rb
Instance Method Summary collapse
Methods included from CommonMethods
Instance Method Details
#block_code(code, lang) ⇒ Object
16 17 18 19 20 21 22 23 |
# File 'lib/jekyll/converters/markdown/redcarpet_parser.rb', line 16 def block_code(code, lang) Jekyll::External.require_with_graceful_fail("pygments") lang = lang && lang.split.first || "text" ( Pygments.highlight(code, :lexer => lang, :options => { :encoding => 'utf-8' }), lang ) end |