Text block is built in. It's the most important block in the BlockyEditor. You don't need to do anything to load it.
It handles the basic text rendering and editing stuff.
Data definitions:
interface TextBlockAttributes {
textType: TextType;
checked?: boolean /** used for checkbox */;
}
Builtin types:
Add styles of bold/italic/underline.
import makeStyledTextPlugin from "blocky-core/dist/plugins/styledTextPlugin";
Add styles of h1/h2/h3.
import makeHeadingsPlugin from "blocky-core/dist/plugins/headingsPlugin";
Add commands of bullet list.
import makeBulletListPlugin from "blocky-core/dist/plugins/bulletListPlugin";