Class: HtmlToProsemirror::Nodes::HardBreak

Inherits:
Node
  • Object
show all
Defined in:
lib/html_to_prosemirror/nodes/hard_break.rb

Instance Attribute Summary

Attributes inherited from Node

#type, #wrapper

Instance Method Summary collapse

Methods inherited from Node

#initialize

Constructor Details

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

Instance Method Details

#dataObject



9
10
11
12
13
# File 'lib/html_to_prosemirror/nodes/hard_break.rb', line 9

def data
  {
    type: "hard_break"
  }
end

#matchingObject



5
6
7
# File 'lib/html_to_prosemirror/nodes/hard_break.rb', line 5

def matching
  @node.name === 'br'
end