Class: Stepmod::Utils::Converters::Text

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

Constant Summary

Constants inherited from Base

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
# File 'lib/stepmod/utils/converters/text.rb', line 7

def convert(node, state = {})
  if node.text.strip.empty?
    treat_empty(node, state)
  else
    treat_text(node, state)
  end
end