Class: Jekyll::HighlightBlock
- Inherits:
-
Liquid::Block
- Object
- Liquid::Block
- Jekyll::HighlightBlock
- Includes:
- Liquid::StandardFilters
- Defined in:
- lib/jekyll/tags/highlight.rb
Constant Summary collapse
- SYNTAX =
we need a language, but the linenos argument is optional.
/(\w+)\s?([\w\s=]+)*/
Instance Method Summary collapse
- #add_code_tags(code, lang) ⇒ Object
-
#initialize(tag_name, markup, tokens) ⇒ HighlightBlock
constructor
A new instance of HighlightBlock.
- #render(context) ⇒ Object
- #render_codehighlighter(context, code) ⇒ Object
- #render_pygments(context, code) ⇒ Object
Constructor Details
#initialize(tag_name, markup, tokens) ⇒ HighlightBlock
Returns a new instance of HighlightBlock.
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/jekyll/tags/highlight.rb', line 9 def initialize(tag_name, markup, tokens) super if markup =~ SYNTAX @lang = $1 if defined? $2 = {} $2.split.each do |opt| key, value = opt.split('=') if value.nil? if key == 'linenos' value = 'inline' else value = true end end [key] = value end = .to_a.collect { |opt| opt.join('=') } # additional options to pass to Albino. @options = { 'O' => .join(',') } else @options = {} end else raise SyntaxError.new("Syntax Error in 'highlight' - Valid syntax: highlight <lang> [linenos]") end end |
Instance Method Details
#add_code_tags(code, lang) ⇒ Object
63 64 65 66 67 |
# File 'lib/jekyll/tags/highlight.rb', line 63 def (code, lang) # Add nested <code> tags to code blocks code = code.sub(/<pre>/,'<pre><code class="' + lang + '">') code = code.sub(/<\/pre>/,"</code></pre>") end |
#render(context) ⇒ Object
37 38 39 40 41 42 43 |
# File 'lib/jekyll/tags/highlight.rb', line 37 def render(context) if context.registers[:site].pygments render_pygments(context, super.join) else render_codehighlighter(context, super.join) end end |
#render_codehighlighter(context, code) ⇒ Object
52 53 54 55 56 57 58 59 60 61 |
# File 'lib/jekyll/tags/highlight.rb', line 52 def render_codehighlighter(context, code) #The div is required because RDiscount blows ass <<-HTML <div> <pre> <code class='#{@lang}'>#{h(code).strip}</code> </pre> </div> HTML end |
#render_pygments(context, code) ⇒ Object
45 46 47 48 49 50 |
# File 'lib/jekyll/tags/highlight.rb', line 45 def render_pygments(context, code) output = (Albino.new(code, @lang).to_s(@options), @lang) output = context["pygments_prefix"] + output if context["pygments_prefix"] output = output + context["pygments_suffix"] if context["pygments_suffix"] output end |