-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Docs: add a migration list * Apply php-cs-fixer changes * Update doc/01_Migration_to_Quill.md Co-authored-by: Bernhard Rusch <[email protected]> * Update doc/01_Migration_to_Quill.md Co-authored-by: Bernhard Rusch <[email protected]> * Task: add replace section --------- Co-authored-by: robertSt7 <[email protected]> Co-authored-by: Bernhard Rusch <[email protected]>
- Loading branch information
1 parent
64d8c20
commit 09ea289
Showing
2 changed files
with
39 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Migration to Quill | ||
|
||
Every WYSIWYG-Editor (TinyMCE, CKEditor, ...) has its own peculiarities, that means that they are never 100% compatible to each other. Potential incompatibilities can result into different markup or styling, in rare edge-cases even in a kind of data-loss if the existing markup is not supported by Quill. Therefore it's important to check your existing contents for compatibility with the editor. | ||
|
||
## Replace TinyMCE with Quill | ||
|
||
First install Quill: [Installation](./00_Installation.md) | ||
|
||
### Bundles | ||
|
||
Make sure TinyMCE isn't enabled in the `config/bundles.php` file. The following lines should be removed: | ||
|
||
```php | ||
use Pimcore\Bundle\TinymceBundle\PimcoreTinymceBundle; | ||
// ... | ||
|
||
return [ | ||
// ... | ||
PimcoreTinymceBundle::class => ['all' => true], | ||
// ... | ||
]; | ||
``` | ||
|
||
## Known incompatibilities | ||
|
||
### Configuration | ||
|
||
Change the twig and public configs according to [config options](https://quilljs.com/docs/configuration/) | ||
|
||
### Tables & Lists | ||
|
||
Tables & Lists form TinyMCE could be displayed different in Quill than in TinyMCE. Please check your fields after migration. | ||
|
||
|