class HtmlToProsemirror::Nodes::BulletList

Public Instance Methods

data() click to toggle source
# File lib/html_to_prosemirror/nodes/bullet_list.rb, line 9
def data
  {
    type: "bullet_list"
  }
end
matching() click to toggle source
# File lib/html_to_prosemirror/nodes/bullet_list.rb, line 5
def matching
  @node.name === 'ul'
end