Class: TeXML::CtrlNode

Inherits:
Node
  • Object
show all
Defined in:
lib/texml.rb

Instance Method Summary collapse

Methods inherited from Node

#childrenValue, create, #initialize

Constructor Details

This class inherits a constructor from TeXML::Node

Instance Method Details

#to_texObject



132
133
134
135
136
137
138
139
# File 'lib/texml.rb', line 132

def to_tex
  ch = @node['ch']
  unless ch.nil?
	return ch[0] & 0x9F	# Control version of ch
  else
	nil
  end
end