Skip to main content
Organize content with clean, structured bullet points. Type - , * , or + to start a list automatically. Create nested lists with Tab/Shift+Tab. Lists preserve perfectly through Word import/export.

OOXML Structure

<w:p>
  <w:pPr>
    <w:pStyle w:val="ListParagraph"/>
    <w:numPr>
      <w:ilvl w:val="0"/>
      <w:numId w:val="1"/>
    </w:numPr>
  </w:pPr>
  <w:r>
    <w:t>List item text</w:t>
  </w:r>
</w:p>

Use case

  • Action items - Track tasks and responsibilities
  • Feature lists - Showcase product capabilities
  • Key points - Summarize important information
  • Requirements - Document specifications clearly
Bullet list functionality is part of the Paragraph extension. There is no separate bullet list extension.

Commands

toggleBulletList

Toggle bullet list formatting on the current selection. Converts selected paragraphs to list items or removes list formatting. Example:
editor.commands.toggleBulletList()

Keyboard shortcuts

CommandShortcutDescription
toggleBulletList()⌘/Ctrl-Shift-8Toggle bullet list
(indent)TabIncrease list indentation
(outdent)Shift-TabDecrease list indentation

Input rules

Type - , * , or + followed by a space to start a bullet list automatically.

Source code