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:
Document
Paragraph
Text
Heading
ListItem
TextStyle
Placeholder
Selection
GapCursor
DropCursor
Additionally, some extensions combine multiple functionalities. For example:
SubscriptAndSuperscript
combinesSubscript
andSuperscript
. So, you don't need to importSubscript
andSuperscript
manually 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