Class: Ox::Raw
Overview
Raw elements are used to inject existing XML strings into a document WARNING: Use of this feature can result in invalid XML, since ‘value` is injected as-is.
Instance Attribute Summary
Attributes inherited from Node
Instance Method Summary collapse
-
#initialize(value) ⇒ Raw
constructor
Creates a new Raw element with the specified value.
Methods inherited from Node
Constructor Details
#initialize(value) ⇒ Raw
Creates a new Raw element with the specified value.
-
value
[String] string value for the comment
9 10 11 |
# File 'lib/ox/raw.rb', line 9 def initialize(value) super end |