Class: ProsemirrorToHtml::Nodes::OrderedList
- Inherits:
-
Node
- Object
- Node
- ProsemirrorToHtml::Nodes::OrderedList
show all
- Defined in:
- lib/prosemirror_to_html/nodes/ordered_list.rb
Instance Attribute Summary
Attributes inherited from Node
#type, #wrapper
Instance Method Summary
collapse
Methods inherited from Node
#initialize, #tag, #text
Instance Method Details
#data ⇒ Object
9
10
11
|
# File 'lib/prosemirror_to_html/nodes/ordered_list.rb', line 9
def data
'ol'
end
|
#matching ⇒ Object
5
6
7
|
# File 'lib/prosemirror_to_html/nodes/ordered_list.rb', line 5
def matching
@node.type === 'ordered_list'
end
|