Class: MDOM::Hrule

Inherits:
BlockNode show all
Defined in:
lib/mdom/nodes.rb

Instance Attribute Summary

Attributes inherited from Node

#attributes, #children, #parent, #type

Instance Method Summary collapse

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(attributes: {}) ⇒ Hrule

Returns a new instance of Hrule.



105
106
107
# File 'lib/mdom/nodes.rb', line 105

def initialize(attributes: {})
  super(Types::HRULE, attributes: attributes)
end