I try to to add 2 plugins (audio and Mathtype) in ASP.NET Core 5 MVC, but that doesn't work.
I installed ckeditor 4 from (https://ckeditor.com/cke4/builder) after build with plugins.
EXTRACTed folder and file as steps. The code is shown here:
<h2>Ckeditor</h2>
<head>
<meta charset="utf-8">
<title>CKEditor</title>
<script src="~/Content/ckeditor/ckeditor.js"></script>
</head>
<body>
<textarea name="editor1"></textarea>
<script>CKEDITOR.replace('editor1');</script>
</body>
In your HTML page add an element that CKEditor should replace:
Two steps of creating a CKEditor 5:
Load the desired editor via the
<script>
tag.Call the static
create()
method to create the editor.Result