BulletList extension #5624
Unanswered
eyesdwn
asked this question in
Questions & Help
Replies: 1 comment
-
Extending the base extension and overriding certain methods is the easiest way to disable behavior. import BulletListExtension from "@tiptap/extension-bullet-list";
export const BulletList = BulletListExtension.extend({
addInputRules() {
return [];
}
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
"Type * , - or + at the beginning of a new line and it will magically transform to a bullet list."
is there a way to deactivate this functionality for '+'? sometimes it breaks the desired flow.
Beta Was this translation helpful? Give feedback.
All reactions