Files
tiptap/docs/src/data/posts/schema.md
Philipp Kühn 56a6389441 update text
2020-04-20 14:07:20 +02:00

595 B
Raw Blame History

Schema

Unlike many other editors, tiptap is based on a schema that defines how your content is structured. This allows you to define the kind of nodes that may occur in the document, its attributes and the way they can be nested.

This schema is very strict. You cant use any HTML-element or attribute that is not defined in your schema.

For example if you paste something like This is <strong>important</strong> into tiptap and you dont have registed any extension that handles strong tags, youll only see This is important.