Feature

Bullets

Use bullet points, multi-level numbered lists, and custom start numbers.

toolbar: bulletList · numberedList · multiLevelList · decreaseIndent · increaseIndent · growFont · shrinkFont

Bullets & Numbering

Use the bullet buttons in the toolbar to create various types of lists.

Bullet Points

  • First item
  • Second item
    • Sub-item 1
    • Sub-item 2
  • Third item

Multi-level Numbering

  1. Preparation phase
    1. Define requirements
    2. Estimate schedule
  2. Implementation phase
  3. Verification phase

Configuration

mode: classic · 7 buttons
var config = Object.assign(synapEditorConfig, {
    'editor.license': synapEditorLicense,
    'editor.lang': 'en',
    'editor.toolbar': [
        'new', '|',
        'bulletList', 'numberedList', 'multiLevelList', '|', 'decreaseIndent', 'increaseIndent', '|', 'growFont', 'shrinkFont'
    ],
    'editor.menu.show': false
});

// Create editor instance
var editor = new SynapEditor('synapEditor', config, initialHtml);