Class: Stepmod::Utils::Converters::Blockquote

Inherits:
Base
  • Object
show all
Defined in:
lib/stepmod/utils/converters/blockquote.rb

Constant Summary

Constants inherited from Base

Stepmod::Utils::Converters::Base::PREFIXES_REGEX

Instance Method Summary collapse

Methods inherited from Base

#treat_children

Instance Method Details

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



7
8
9
10
11
12
13
14
15
16
# File 'lib/stepmod/utils/converters/blockquote.rb', line 7

def convert(node, state = {})
  id = node["id"]
  anchor = id ? "[[#{id}]]\n" : ""
  cite = node["cite"]
  attrs = cite ? "[quote, #{cite}]\n" : ""
  content = treat_children(node, state).strip
  content = ReverseAdoc.cleaner.remove_newlines(content)
  # "\n\n> " << content.lines.to_a.join('> ') << "\n\n"
  "\n\n#{attrs}____\n" << content.lines.to_a.join("") << "\n____\n\n"
end