class Nokogiri::XML::ElementContent
Represents the allowed content in an Element Declaration inside a DTD:
<?xml version="1.0"?><?TEST-STYLE PIDATA?> <!DOCTYPE staff SYSTEM "staff.dtd" [ <!ELEMENT div1 (head, (p | list | note)*, div2*)> ]> </root>
ElementContent
represents the tree inside the <!ELEMENT> tag shown above that lists the possible content for the div1 tag.
Constants
- ELEMENT
- MULT
- ONCE
Possible content occurrences
- OPT
- OR
- PCDATA
Possible definitions of type
- PLUS
- SEQ
Attributes
document[R]
Public Instance Methods
children()
click to toggle source
Get the children of this ElementContent
node
# File lib/nokogiri/xml/element_content.rb, line 31 def children [c1, c2].compact end