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