Class: ReverseMarkdown::Converters::Em

Inherits:
Base
  • Object
show all
Defined in:
lib/reverse_markdown/converters/em.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
8
9
10
11
# File 'lib/reverse_markdown/converters/em.rb', line 4

def convert(node, state = {})
  content = treat_children(node, state.merge(already_italic: true))
  if content.strip.empty? || state[:already_italic]
    content
  else
    "#{content[/^\s*/]}_#{content.strip}_#{content[/\s*$/]}"
  end
end