class ProsemirrorToHtml::Nodes::BulletList

Public Instance Methods

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