Every extension
text
A node in @matrajs/core.
Adding it
import { createEditor, document, paragraph, text, text } from '@matrajs/core'
const editor = createEditor({
extensions: [document, paragraph, text, text],
element: document.querySelector('#editor'),
})
There is no separate package · text is already in @matrajs/core, and an extension you do not import is not in your bundle. document, paragraph and text are the floor every document needs.