캐럿이 위치한 문단에 다단계 글머리를 설정합니다.
...
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:
| Name | Type | Description |
|---|---|---|
| actionName | String액션 이름 | 'setMultiList' multilevel list API |
| style | String |
|
Example:
| Code Block | ||||
|---|---|---|---|---|
| ||||
editor.execCommand('setMultiList', 'none');
editor.execCommand('setMultiList', 'multi_1');
editor.execCommand('setMultiList', 'multi_3'); |
...