Sha256: 1a29241d97fd90d1a2269264b34f8e367e947bf3c98bd2a072ae79417fa0ad02

Contents?: true

Size: 220 Bytes

Versions: 3

Compression:

Stored size: 220 Bytes

Contents

module HtmlToProsemirror
  module Nodes
    class BulletList < Node

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

      def data
        {
          type: "bullet_list"
        }
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
html_to_prosemirror-0.2.0 lib/html_to_prosemirror/nodes/bullet_list.rb
html_to_prosemirror-0.1.1 lib/html_to_prosemirror/nodes/bullet_list.rb
html_to_prosemirror-0.1.0 lib/html_to_prosemirror/nodes/bullet_list.rb