Skip to content

Commit

Permalink
Docs: Reviewed MathType customization section.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnaTomanek committed Jan 12, 2021
1 parent a15dfcd commit 20def84
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions docs/features/math-equations.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ It is possible to use different services for MathType support. There are several

### Java

To install the Java service follow the steps below:
To install the Java service, follow the steps below:

1. Download the [MathType Web Integration Services - Java](http://www.wiris.com/en/plugins/services/download) package.

2. Deploy the **pluginwiris_engine war** file.
2. Deploy the `pluginwiris_engine` war file.

3. Add `mathTypeParameters` to CKEditor5 with the configuration shown below:
3. Add `mathTypeParameters` to CKEditor 5 with the configuration shown below:

```js
ClassicEditor.create( document.querySelector( '#example' ), {
Expand All @@ -96,7 +96,7 @@ To install the Java service follow the steps below:
]
},
language: 'en',
// MathType Parameters
// MathType parameters.
mathTypeParameters : {
serviceProviderProperties : {
URI : '/pluginwiris_engine/app/configurationjs',
Expand All @@ -108,13 +108,13 @@ To install the Java service follow the steps below:
### PHP
To install the PHP service follow the steps below:
To install the PHP service, follow the steps below:
1. Download the [MathType Web Integration Services - PHP](http://www.wiris.com/en/plugins/services/download) package.
2. Copy the **generic_wiris/integration** folder into your project. In this example it was assumed the services are located at *DOCUMENT_ROOT/php-services/*
2. Copy the `generic_wiris/integration` folder into your project. In this example it was assumed the services are located at `DOCUMENT_ROOT/php-services/`.
3. Add `mathTypeParameters` to CKEditor5 with the following configuration:
3. Add `mathTypeParameters` to CKEditor 5 with the following configuration:
```js
ClassicEditor.create( document.querySelector( '#example' ), {
Expand All @@ -128,7 +128,7 @@ To install the PHP service follow the steps below:
]
},
language: 'en',
// MathType Parameters
// MathType parameters.
mathTypeParameters : {
serviceProviderProperties : {
URI : 'http://localhost/php-services/integration',
Expand All @@ -140,13 +140,13 @@ To install the PHP service follow the steps below:
### .NET
To install the .NET service follow the steps below:
To install the .NET service, follow the steps below:
1. Download the [MathType Web Integration Services - Aspx](http://www.wiris.com/en/plugins/services/download) package.
2. Copy the **generic_wiris/integration** folder into your project. In this example it was assumed the services are located at *DOCUMENT_ROOT/aspx-services/*
2. Copy the `generic_wiris/integration` folder into your project. In this example it was assumed the services are located at `DOCUMENT_ROOT/aspx-services/`.
3. Add `mathTypeParameters` to CKEditor5 with this configuration:
3. Add `mathTypeParameters` to CKEditor 5 with this configuration:
```js
ClassicEditor.create( document.querySelector( '#example' ), {
Expand All @@ -160,7 +160,7 @@ To install the .NET service follow the steps below:
]
},
language: 'en',
// MathType Parameters
// MathType parameters.
mathTypeParameters : {
serviceProviderProperties : {
URI : 'http://localhost/aspx-services/integration',
Expand All @@ -172,17 +172,17 @@ To install the .NET service follow the steps below:
### Ruby on Rails
To install the Ruby on Rails service follow the steps below:
To install the Ruby on Rails service, follow the steps below:
1. Download the [MathType Web Integration Services - Ruby on Rails](http://www.wiris.com/en/plugins/services/download) package.
2. Instal the **wirispluginengine.gem** gem.
2. Instal the `wirispluginengine.gem` gem.
```
gem install -l wirispluginengine.gem
gem install -l wirispluginengine.gem
```
3. Add `mathTypeParameters` to CKEditor5 with the configuration below:
3. Add `mathTypeParameters` to CKEditor 5 with the configuration below:
```js
Expand All @@ -197,7 +197,7 @@ To install the Ruby on Rails service follow the steps below:
]
},
language: 'en',
// MathType Parameters
// MathType parameters.
mathTypeParameters : {
serviceProviderProperties : {
URI : '/wirispluginengine/integrationn',
Expand Down

0 comments on commit 20def84

Please sign in to comment.