This is a specialized XMLElement to represent a simple text.
# File lib/XMLElement.rb, line 130 130: def to_s(indent) 131: out = '' 132: @text.each_utf8_char do |c| 133: case c 134: when '<' 135: out << '<' 136: when '>' 137: out << '>' 138: when '&' 139: out << '&' 140: else 141: out << c 142: end 143: end 144: 145: out 146: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.