Guide
Extensions
Styled and functional extensions for the editor.
You can use any Tiptap extensions or create your own.
Default Extensions
Avoiding Duplicate Extensions
The StarterKit extension already includes several core extensions by default, such as Document, Paragraph, Text, and more. You do not need to import them separately unless you want to customize their configuration.
Extensions Included in StarterKit
StarterKit automatically includes the following extensions:
DocumentParagraphTextHeadingListItemTextStylePlaceholderSelectionGapCursorDropCursor
Additionally, some extensions combine multiple functionalities. For example:
SubscriptAndSuperscriptcombinesSubscriptandSuperscript. So, you don't need to importSubscriptandSuperscriptmanually if you want to useSubscriptAndSuperscript.
Configuring StarterKit Extensions
You can configure or disable any of the included extensions when initializing the StarterKit:
Create an Extension
You can create your own extensions to add new capabilities and functionality or change the behaviour of the editor. Learn More