Class: Jekyll::FootnoteList

Inherits:
Liquid::Block
  • Object
show all
Defined in:
lib/jekyll/footnotes.rb

Instance Method Summary collapse

Instance Method Details

#render(context) ⇒ Object



42
43
44
45
46
47
# File 'lib/jekyll/footnotes.rb', line 42

def render(context)
  context.stack do
    body = super
    "<ol class=\"footnotelist\">#{body}</ol>"
  end
end