New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@tiptap/extension-bullet-list

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tiptap/extension-bullet-list

bullet list extension for tiptap

100

Supply Chain Security

67

Quality

99

Maintenance

100

Vulnerabilities

100

License


Version published
Weekly downloads
1.4M
increased by0.65%
Maintainers
6
Weekly downloads
 
Created
Issues
560

What is @tiptap/extension-bullet-list?

@tiptap/extension-bullet-list is an extension for the Tiptap editor that allows users to create and manage bullet lists within their rich text content. It provides a straightforward way to add, edit, and manipulate bullet lists, making it easier to organize content in a structured manner.

What are @tiptap/extension-bullet-list's main functionalities?

Add Bullet List

This feature allows you to add a bullet list to your Tiptap editor. The code initializes the editor with the BulletList extension and then toggles the bullet list on the focused editor.

import { BulletList } from '@tiptap/extension-bullet-list';

const editor = new Editor({
  extensions: [
    BulletList,
  ],
});

editor.chain().focus().toggleBulletList().run();

Toggle Bullet List

This feature allows you to toggle a bullet list on and off within the editor. The code focuses on the editor and toggles the bullet list state.

editor.chain().focus().toggleBulletList().run();

Check if Selection is Bullet List

This feature checks if the current selection in the editor is a bullet list. The code returns a boolean indicating whether the selection is a bullet list.

const isBulletList = editor.isActive('bulletList');

Other packages similar to @tiptap/extension-bullet-list

FAQs

Package last updated on 28 Jan 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts