ckeditor5富文本数学化学方程式

我们使用ckeditor5的时候会用到化学数学方程式的业务,如何构成呢?
官方文档:https://ckeditor.com/docs/ckeditor5/latest/features/math-equations.htmlckeditor5富文本数学化学方程式_第1张图片
其实官方文档我看了看配置这种数学和化学方程需要自定义配置编辑器,能力有限没看懂。
但是找到了一个快捷的方法:https://ckeditor.com/ckeditor-5/online-builder/,这是CKEditor 5在线生成器
ckeditor5富文本数学化学方程式_第2张图片
进入步骤了:1.打开https://ckeditor.com/ckeditor-5/online-builder/选择编辑器类型(我选择的经典)
2.进入了选择编辑器插件页面,我们在插件中寻找数学类型点击加按钮
ckeditor5富文本数学化学方程式_第3张图片
ckeditor5富文本数学化学方程式_第4张图片
3.选择完毕点击下一步,此时别忘记把化学和数学方程式的图表放到工具栏的项目里
ckeditor5富文本数学化学方程式_第5张图片
4.点击下一步:选择语言
5.点击下一步,下载
以上这部完成之后我们要应用到demo事例中和Vue项目中
首先把下载的文件解压放在一个文件夹里
一.demon事例中
在文件夹中新建一个页面(guker.html)
ckeditor5富文本数学化学方程式_第6张图片





  
  
  Document




  

Here goes the initial content of the editor.

```

但注意:我们编辑运行要是用open with Live Server运行

二.VUE项目中使用
你可以先看一下官方文档:
https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/frameworks/vuejs-v2.html
我们只需要把刚才demon文件夹下的bulid文件下的ckeditor.js文件拷贝一份就行
我把它放在Vue项目中的assets下面
在我们使用的组件中这样配置:

<template>
     <div id="editor">
            <ckeditor
              ref="ckeditor"
              :editor="editor"
              v-model="editorData"
              :config="editorConfig"
            ></ckeditor>
          </div>
          </template>
<script>
import Vue from "vue";
import ClassicEditor from "../../assets/js/ckeditor.js";
import CKEditor from "@ckeditor/ckeditor5-vue2";//这个插件npm要装上
Vue.use(CKEditor);

data(){
     
  editorData: "",
      editor: ClassicEditor,
      editorConfig: {
     
        // 编辑器的配置
        toolbar: [
          "heading",
          "|",
          "bold",
          "italic",
          "link",
          "bulletedList",
          "numberedList",
          "MediaEmbed",
          "blockQuote",
          "imageUpload",
          "insertTable",
          "|",
          "alignment",
          "mathType",
          "ChemType",
          "outdent",
          "indent",
          "undo",
          "redo",
        ],
      },
}

</script>

其实老铁们,我这样的方法很笨,打包的时候会很慢,这个以自身带了一个bug就是图片按钮不能使用,我正在修正,如果那个大神能解决也欢迎留言。如果还有大神明白了ckeditor5的自定义配置这种数学化学方程式的,也希望发博客,请大家的博客写的详细明白一点谢谢(我的格言:我很菜但我还不想努力)

你可能感兴趣的:(ckeditor5富文本,ckeditor,前端,javascript)