Class: ProsemirrorToHtml::Nodes::Text

Inherits:
Node
  • Object
show all
Defined in:
lib/prosemirror_to_html/nodes/text.rb

Instance Attribute Summary

Attributes inherited from Node

#type, #wrapper

Instance Method Summary collapse

Methods inherited from Node

#initialize, #text

Constructor Details

This class inherits a constructor from ProsemirrorToHtml::Nodes::Node

Instance Method Details

#matchingObject



5
6
7
# File 'lib/prosemirror_to_html/nodes/text.rb', line 5

def matching
  @node.type === 'text'
end

#tagObject



9
10
11
# File 'lib/prosemirror_to_html/nodes/text.rb', line 9

def tag
  @node.text
end