Class: ProsemirrorToHtml::Marks::Bold
- Inherits:
-
Mark
- Object
- Mark
- ProsemirrorToHtml::Marks::Bold
show all
- Defined in:
- lib/prosemirror_to_html/marks/bold.rb
Instance Attribute Summary
Attributes inherited from Mark
#type
Instance Method Summary
collapse
Methods inherited from Mark
#initialize
Instance Method Details
#matching ⇒ Object
5
6
7
|
# File 'lib/prosemirror_to_html/marks/bold.rb', line 5
def matching
@node.type === 'bold'
end
|
#tag ⇒ Object
9
10
11
|
# File 'lib/prosemirror_to_html/marks/bold.rb', line 9
def tag
'strong'
end
|