Class: ReverseAsciidoctor::Converters::Sub

Inherits:
Base
  • Object
show all
Defined in:
lib/reverse_asciidoctor/converters/sub.rb

Instance Method Summary collapse

Methods inherited from Base

#escape_keychars, #extract_title, #treat, #treat_children

Instance Method Details

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



4
5
6
7
# File 'lib/reverse_asciidoctor/converters/sub.rb', line 4

def convert(node, state = {})
  content = treat_children(node, state)
  "#{content[/^\s*/]}~#{content.strip}~#{content[/\s*$/]}"
end