您好,我正在做一个项目,并且CKEditor在我的网站上工作得很好
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=default'></script>
<script>
ClassicEditor
.create( document.querySelector( '#richtext' ) )
.then( editor => {
console.log( editor );
editor.model.document.on( 'change:data', () => {
$('#richtext').val(editor.getData());
} );
} )
.catch( error => {
console.error( error );
} );
</script>
它工作得很好,但是我也想在这里添加一个插件,我做了一些恢复,发现我可以在这里用这个插件来做
https://ckeditor.com/docs/ckeditor5/latest/features/math-equations.html
但是我对npn不满意,我也无法正确理解页面,有人可以帮助我
在没有任何CDN的NPN等编辑器的配置下安装此插件。我无法在服务器上安装任何东西。 另外,如果我可以将经典版本的编辑器转换为文档编辑器,那就太好了。 这是我的两个最大问题。
https://ckeditor.com/ckeditor-5/download/ https://ckeditor.com/docs/ckeditor5/latest/api/module_editor-decoupled_decouplededitor-DecoupledEditor.html
任何想法??