
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@wiris/mathtype-ckeditor5
Advanced tools
Type and handwrite mathematical notation with MathType.
Easily include quality math equations in your documents and digital content.
Install the npm module:
npm install @wiris/mathtype-ckeditor5
Update the CKEditor configuration by adding the new plugin and including the MathType and ChemType buttons:
Using the legacy methods of installation:
import MathType from '@wiris/mathtype-ckeditor5';
...
ClassicEditor
.create( editorElement, {
plugins: [ ..., MathType, ... ],
toolbar: {
items: [
...
'MathType',
'ChemType',
...
]
},
And when uses CKEditor5
without legacy methods of installation:
import { ClassicEditor } from 'ckeditor5';
import MathType from '@wiris/mathtype-ckeditor5/dist/index.js';
...
ClassicEditor
.create( editorElement, {
plugins: [ ..., MathType, ... ],
toolbar: {
items: [
...
'MathType',
'ChemType',
...
]
},
This npm module uses remotely hosted services to render MathML data. In case of wanting to install these services on your own backend, please contact support@wiris.com.
In order to display mathematical formulas on the target page, i.e. the page where content produced by the HTML editor will be visible, the target page needs to include the MathType script. For example for the default setting this would be:
<script src="https://www.wiris.net/demo/plugins/app/WIRISplugins.js?viewer=image"></script>
To find out more information about MathType, please go to the following documentation:
The MathType Privacy Policy covers the data processing operations for the MathType users. It is an addendum of the company’s general Privacy Policy and the general Privacy Policy still applies to MathType users.
FAQs
MathType Web for CKEditor5 editor
We found that @wiris/mathtype-ckeditor5 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.