Class: Jekyll::HighlightBlock

Inherits:
Liquid::Block
  • Object
show all
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?(:?linenos)?\s?/

Instance Method Summary collapse

Constructor Details

#initialize(tag_name, markup, tokens) ⇒ HighlightBlock

Returns a new instance of HighlightBlock.



8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/jekyll/tags/highlight.rb', line 8

def initialize(tag_name, markup, tokens)
  super
  if markup =~ SYNTAX
    @lang = $1
    if defined? $2
      # additional options to pass to Albino.
      @options = { 'O' => 'linenos=inline' }
    else
      @options = {}
    end
  else
    raise SyntaxError.new("Syntax Error in 'highlight' - Valid syntax: highlight <lang> [linenos]")
  end
end

Instance Method Details

#render(context) ⇒ Object



23
24
25
26
27
28
29
# File 'lib/jekyll/tags/highlight.rb', line 23

def render(context)
  if Jekyll.pygments
    render_pygments(context, super.to_s)
  else
    render_codehighlighter(context, super.to_s)
  end
end

#render_codehighlighter(context, code) ⇒ Object



39
40
41
42
43
44
45
46
47
48
# File 'lib/jekyll/tags/highlight.rb', line 39

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



31
32
33
34
35
36
37
# File 'lib/jekyll/tags/highlight.rb', line 31

def render_pygments(context, code)
  if Jekyll.content_type == :markdown
    return "\n" + Albino.new(code, @lang).to_s(@options) + "\n"
  else
    "<notextile>" + Albino.new(code, @lang).to_s(@options) + "</notextile>"
  end
end