Unverified Commit 25afb22c authored by Piotrek Koszuliński's avatar Piotrek Koszuliński Committed by GitHub

Merge pull request #33 from ckeditor/highlight-converter

Docs: Linked our example converter for highlight to font migration.
parents acf3cccc 91fc75d3
...@@ -11,9 +11,9 @@ Blog post coming soon... ...@@ -11,9 +11,9 @@ Blog post coming soon...
### BREAKING CHANGES ### BREAKING CHANGES
The document editor build does not contain the highlight feature anymore. It was replaced with the font color and font background color features. You should install the highlight feature back in case you expect that the highlight feature was already used by the users of the editor. Otherwise, the markup created in the past by that feature will be filtered out the next time it is loaded to the editor. The document editor build does not contain the highlight feature anymore. It was replaced with the font color and font background color features.
In case you want to migrate to using the font and font background color features, you need to migrate your existing content. This requires replacing spans created by the highlight feature with `<span style="color:?">` or `<span style="background-color:?">`, depending on the configured highlight markers. In case you expect that the highlight feature was already used by the users of the editor, you should either use [a simple highlight to font color conversion plugin](https://codepen.io/ckeditor/pen/oNXzGeO?editors=1010) or install the highlight feature back. Otherwise, the markup created in the past by that feature will be filtered out the next time it is loaded to the editor. If you would like to migrate existing content yourself, you need to replace spans created by the highlight feature with `<span style="color:?">` or `<span style="background-color:?">`, depending on the configured highlight markers.
### Other changes ### Other changes
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment