Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong rendering error codes in docs. #17430

Merged
merged 1 commit into from
Nov 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions packages/ckeditor5-core/src/editor/editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -386,11 +386,11 @@ export default abstract class Editor extends /* #__PURE__ */ ObservableMixin() {
/**
* The `licenseKey` property is missing in the editor configuration.
*
* * If you are using the editor in a commercial setup, please provide your license key.
* * If you still need to acquire a key, please [contact us](https://ckeditor.com/contact/) or
* [create a free account with a 14 day premium features trial](https://portal.ckeditor.com/checkout?plan=free).
* * If you are using the editor under a GPL license or another license from our Open Source Initiative,
* use the 'GPL' license key instead.
* * If you are using the editor in a commercial setup, please provide your license key.
* * If you still need to acquire a key, please [contact us](https://ckeditor.com/contact/) or
* [create a free account with a 14 day premium features trial](https://portal.ckeditor.com/checkout?plan=free).
* * If you are using the editor under a GPL license or another license from our Open Source Initiative,
* use the 'GPL' license key instead.
*
* ```js
* ClassicEditor.create( document.querySelector( '#editor' ), {
Expand Down Expand Up @@ -971,7 +971,7 @@ export default abstract class Editor extends /* #__PURE__ */ ObservableMixin() {
/**
* You have exceeded the editor operation limit for your trial license key.
* Please restart the editor to continue using it.
* [@glink getting-started/licensing/license-key-and-activation#license-key-types Read more about license key types}.
* {@glink getting-started/licensing/license-key-and-activation#license-key-types Read more about license key types}.
*
* @error license-key-trial-limit
*/
Expand All @@ -993,8 +993,8 @@ export default abstract class Editor extends /* #__PURE__ */ ObservableMixin() {
/**
* You have reached the usage limit of your license key. This can occur in the following situations:
*
* * You are on a free subscription without a connected payment method and have exceeded the allowed usage threshold.
* * Your account has overdue invoices and the grace period has ended.
* * You are on a free subscription without a connected payment method and have exceeded the allowed usage threshold.
* * Your account has overdue invoices and the grace period has ended.
*
* To extend the limit and restore access, please update the required details in the
* [Customer Portal](https://portal.ckeditor.com) or
Expand All @@ -1009,10 +1009,10 @@ export default abstract class Editor extends /* #__PURE__ */ ObservableMixin() {
/**
* Your license does not allow the current distribution channel.
*
* * With a 'GPL' license key, you may use the editor installed via npm or a ZIP package (self-hosted).
* * With the CKEditor Cloud plans, you may use the editor via our CDN.
* * With the CKEditor Custom plans, depending on your plan details, you can use the editor via npm
* or a ZIP package (self-hosted) or Cloud (CDN)
* * With a 'GPL' license key, you may use the editor installed via npm or a ZIP package (self-hosted).
* * With the CKEditor Cloud plans, you may use the editor via our CDN.
* * With the CKEditor Custom plans, depending on your plan details, you can use the editor via npm
* or a ZIP package (self-hosted) or Cloud (CDN)
*
* {@glink getting-started/licensing/usage-based-billing#key-terms Read more about distributions in the documentation}.
* Please verify your installation or [contact support](https://ckeditor.com/contact/) for assistance.
Expand Down