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.



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

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

#add_code_tags(code, lang) ⇒ Object



52
53
54
55
56
# File 'lib/jekyll/tags/highlight.rb', line 52

def add_code_tags(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



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

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



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

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



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

def render_pygments(context, code)
  output = add_code_tags(Albino.new(code, @lang).to_s(@options), @lang)
  case context["content_type"]
    when "markdown" then "\n" + output + "\n"
    when "textile" then "<notextile>" + output + "</notextile>"
    else output
  end
end