1.0.4 • Published 2 years ago

@hchq/ckeditor5-text-indent v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

下载

npm install --save @hchq/ckeditor5-text-indent

使用

// ckeditor.ts

import { ClassicEditor } from "@ckeditor/ckeditor5-editor-classic";

// ... 其他插件
import { TextIndent } from "@hchq/cheditor5-text-indent";

class Editor extends ClassicEditor {
  public static override builtinPlugins = [
    TextIndent,
    // ... 其他插件
  ];

  public static override defaultConfig: EditorConfig = {
    toolbar: {
      items: [
        // ... 
        'TextIndentLeft',
        'TextIndentRight',
        // ... 
      ],
    },
  };
}

export default Editor;
1.0.4

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.3

2 years ago

1.0.0

2 years ago