Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

캐럿이 위치한 문단에 다단계 글머리를 설정합니다.

...

Make the paragraph in which the caret is positioned a multilevel list.

When there is a selection, the selected paragraphs become a multilevel list.


Parameters:

NameTypeDescription
actionNameString액션 이름'setMultiList' multilevel list API
styleString
  • 'none': 리스트 제거
  • 'multi_1': Indented multilevel bullets in the format '1 . 1.1 1.1.1 형식의 들여쓰기된 다단계 글머리'
  • 'multi_2': 1 Indented multilevel bullets in the format '1. 1.1 1.1.1 형식의 들여쓰기 되지 않은 다단계 글머리'
  • 'multi_3': Indented multilevel bullets in the format '1 1-1 1-1-1 형식의 들여쓰기 되지 않은 다단계 글머리'


Example:

Code Block
languagejs
themeEmacs
editor.execCommand('setMultiList', 'none');
editor.execCommand('setMultiList', 'multi_1');
editor.execCommand('setMultiList', 'multi_3');

...