Class: Stepmod::Utils::Converters::Sup

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

Instance Method Summary collapse

Instance Method Details

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



7
8
9
10
11
12
# File 'lib/stepmod/utils/converters/sup.rb', line 7

def convert(node, state = {})
  content = treat_children(node, state)
  return stem_notation(content) if node.parent.name == "eqn"

  "#{content[/^\s*/]}^#{content.strip}^#{content[/\s*$/]}"
end

#stem_notation(content) ⇒ Object



14
15
16
# File 'lib/stepmod/utils/converters/sup.rb', line 14

def stem_notation(content)
  "^{#{content}}"
end