Class: ReverseAdoc::Converters::Pre

Inherits:
Base
  • Object
show all
Defined in:
lib/reverse_adoc/converters/pre.rb

Instance Method Summary collapse

Methods inherited from Base

#escape_keychars, #extract_title, #treat_children

Instance Method Details

#convert(node, state = {}) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
# File 'lib/reverse_adoc/converters/pre.rb', line 4

def convert(node, state = {})
  id = node['id']
  anchor = id ? "[[#{id}]]\n" : ""
  lang = language(node)
  content = treat_children(node, state)
  if lang
    "\n\n#{anchor}[source,#{lang}]\n----\n" << content.lines.to_a.join("") << "\n----\n\n"
  else
    "\n\n#{anchor}....\n" << content.lines.to_a.join("") << "\n....\n\n"
  end
end