Class: MDOM::Strong
- Inherits:
-
InlineNode
- Object
- Node
- InlineNode
- MDOM::Strong
- Defined in:
- lib/mdom/nodes.rb
Instance Attribute Summary
Attributes inherited from Node
#attributes, #children, #parent, #type
Instance Method Summary collapse
-
#initialize(children: []) ⇒ Strong
constructor
A new instance of Strong.
Methods inherited from Node
#[], #ancestors, #append, #children?, #depth, #each_child, #empty?, #find, #find_all, #insert_after, #insert_before, #inspect, #plain_text, #pretty_print, #remove, #replace, #root, #text?, #to_markdown, #to_s, #walk
Constructor Details
#initialize(children: []) ⇒ Strong
Returns a new instance of Strong.
148 149 150 |
# File 'lib/mdom/nodes.rb', line 148 def initialize(children: []) super(Types::STRONG, children: children) end |