tiptap

The headless rich text editor framework for web artisans.

MIT License

Downloads
101.2M
Stars
27K
Committers
367

Bot releases are visible (Hide)

tiptap -

Published by philippkuehn almost 6 years ago

New

  • added pasteRules (#88). Now you can define some rules for transforming pasted text. For example this is helpful for linkify your text. This pasteRule is defined in the default Link mark.
import { Mark } from 'tiptap'
import { pasteRule } from 'tiptap-commands'

export default class Link extends Mark {

  pasteRules({ type }) {
    return [
      pasteRule(
        /https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_+.~#?&//=]*)/g,
        type,
        url => ({ href: url }),
      ),
    ]
  }

}
tiptap -

Published by philippkuehn almost 6 years ago

NEW

  • add missing export for Doc, Paragraph, Text extensions in the tiptap package. For example if you want to overwrite the default Doc you can disable the built-in extensions with useBuiltInExtensions: false and could use the default ones for extending.
tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies

tiptap -

Published by philippkuehn almost 6 years ago

update dependencies