@hchq/ckeditor5-text-indent
v1.0.4
Published
ckeditor5的首行缩进插件
Downloads
2
Readme
下载
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;