diff --git a/docs/framework/guides/architecture/editing-engine.md b/docs/framework/guides/architecture/editing-engine.md index c97effd67aa..3f5bbebeb73 100644 --- a/docs/framework/guides/architecture/editing-engine.md +++ b/docs/framework/guides/architecture/editing-engine.md @@ -333,7 +333,7 @@ Additionally, some features add their own observers. For instance, the {@link mo For a complete list of events fired by observers check the {@link module:engine/view/document~Document}'s list of events. -You can add your own observer (which should be a subclass of {@link module:engine/view/observer/observer~Observer}) by using the {@link module:engine/view/view~View#addObserver `view.addObserver()`} method. Check the code of existing observers to learn how to write them: https://github.com/ckeditor/ckeditor5-engine/tree/master/src/view/observer. +You can add your own observer (which should be a subclass of {@link module:engine/view/observer/observer~Observer}) by using the {@link module:engine/view/view~View#addObserver `view.addObserver()`} method. Check the code of existing observers to learn how to write them: [https://github.com/ckeditor/ckeditor5-engine/tree/master/src/view/observer](https://github.com/ckeditor/ckeditor5-engine/tree/master/src/view/observer). Since all events are by default fired on {@link module:engine/view/document~Document}, it is recommended that third party packages prefix their events with an identifier of the project to avoid name collisions. For example, MyApp's features should fire `myApp:keydown` instead of `keydown`. diff --git a/docs/framework/guides/contributing/contributing.md b/docs/framework/guides/contributing/contributing.md index 67c0e638770..826bbe904a1 100644 --- a/docs/framework/guides/contributing/contributing.md +++ b/docs/framework/guides/contributing/contributing.md @@ -47,7 +47,7 @@ Read more about our {@link framework/guides/contributing/testing-environment tes Assuming that you would like to propose some changes, these are the steps you should take to create a pull request: -1. Make sure to open a ticket in https://github.com/ckeditor/ckeditor5 describing the issue, feature or problem that you want to solve in your pull request. This can be skipped in case of obvious and trivial changes (typos, documentation, etc.). +1. Make sure to open a ticket in [https://github.com/ckeditor/ckeditor5](https://github.com/ckeditor/ckeditor5) describing the issue, feature or problem that you want to solve in your pull request. This can be skipped in case of obvious and trivial changes (typos, documentation, etc.). 1. Make sure your {@link framework/guides/contributing/development-environment development environment} is ready. 1. Go to GitHub and [fork the repository](https://help.github.com/articles/fork-a-repo). The forked repository will appear in your GitHub account as `https://github.com/YOUR-USERNAME/ckeditor5`. 1. Open your terminal, then go to the package ("repository") folder in your development environment: diff --git a/docs/framework/guides/contributing/testing-environment.md b/docs/framework/guides/contributing/testing-environment.md index 24a2062afaa..57adc8db7e9 100644 --- a/docs/framework/guides/contributing/testing-environment.md +++ b/docs/framework/guides/contributing/testing-environment.md @@ -114,7 +114,7 @@ The `yarn run manual` task accepts the following options: * `--dll` – An optional flag that allows creating the DLL builds automatically without asking user for confirmation. If `true` (meaning that the `--dll` flag is provided), DLL builds are created automatically if they are required by test files. You can negate the logic to never create DLL builds and not ask user by providing the `--no-dll` flag. Defaults to `null`, so user will be asked for confirmation. * `--disable-watch` – It is enabled by default when there are no `--files` specified. This is due to high RAM memory usage when running watchers on all files. Disabling watch mode causes the files to no longer be rebuilt automatically when changed. -It starts the server available at http://localhost:8125. +It starts the server available at [http://localhost:8125](http://localhost:8125). ### Creating a manual test diff --git a/docs/framework/guides/development-tools.md b/docs/framework/guides/development-tools.md index 863cc0a1f3e..0819a350f20 100644 --- a/docs/framework/guides/development-tools.md +++ b/docs/framework/guides/development-tools.md @@ -92,7 +92,7 @@ The inspector works with CKEditor 5 [v12.0.0](https://github.com/ckeditor/ckedit ### Contributing to the inspector -The source code of CKEditor 5 inspector and its issue tracker is available on GitHub in https://github.com/ckeditor/ckeditor5-inspector. +The source code of CKEditor 5 inspector and its issue tracker is available on GitHub in [https://github.com/ckeditor/ckeditor5-inspector](https://github.com/ckeditor/ckeditor5-inspector). ## Mr. Git diff --git a/docs/installation/frameworks/angular.md b/docs/installation/frameworks/angular.md index a8501fd1dbd..da2e5575354 100644 --- a/docs/installation/frameworks/angular.md +++ b/docs/installation/frameworks/angular.md @@ -577,9 +577,9 @@ TypeError: Cannot read property 'data-ck-expando' of undefined Workaround: in `polyfills.js` import zone.js using `import zone.js/dist/zone.js` instead of `import 'zone.js'`. More details: -- https://github.com/ckeditor/ckeditor5-angular/issues/109 -- https://github.com/angular/angular/tree/master/packages/zone.js#breaking-changes-since-zonejs-v0111 +- [https://github.com/ckeditor/ckeditor5-angular/issues/109](https://github.com/ckeditor/ckeditor5-angular/issues/109) +- [https://github.com/angular/angular/tree/master/packages/zone.js#breaking-changes-since-zonejs-v0111](https://github.com/angular/angular/tree/master/packages/zone.js#breaking-changes-since-zonejs-v0111) ## Contributing and reporting issues -The source code of the CKEditor 5 rich text editor component for Angular is available on GitHub in https://github.com/ckeditor/ckeditor5-angular. +The source code of the CKEditor 5 rich text editor component for Angular is available on GitHub in [https://github.com/ckeditor/ckeditor5-angular](https://github.com/ckeditor/ckeditor5-angular). diff --git a/docs/installation/frameworks/react.md b/docs/installation/frameworks/react.md index f14fcbc1153..2673a84171c 100644 --- a/docs/installation/frameworks/react.md +++ b/docs/installation/frameworks/react.md @@ -373,7 +373,7 @@ This guide assumes that you are using the [Create React App CLI](https://github. The configuration needs to be ejected to make it possible to customize the webpack configuration. In order to be able to build CKEditor 5 from source, you need to tell webpack how to handle CKEditor 5's SVG and CSS files (by adding loaders configuration). Additionally, you need to exclude the CKEditor 5 source from the existing loaders. - You can see all the changes described below in this example project: https://github.com/ckeditor/ckeditor5-react-example/. + You can see all the changes described below in this example project: [https://github.com/ckeditor/ckeditor5-react-example/](https://github.com/ckeditor/ckeditor5-react-example/). Create a sample application using `create-react-app@3+` first: @@ -649,4 +649,4 @@ For more information, please refer to the {@link features/ui-language Setting th ## Contributing and reporting issues -The source code of rich text editor component for React is available on GitHub in https://github.com/ckeditor/ckeditor5-react. +The source code of rich text editor component for React is available on GitHub in [https://github.com/ckeditor/ckeditor5-react](https://github.com/ckeditor/ckeditor5-react). diff --git a/docs/installation/frameworks/vuejs-v2.md b/docs/installation/frameworks/vuejs-v2.md index b72e4abdec2..6c2e69f9e6f 100644 --- a/docs/installation/frameworks/vuejs-v2.md +++ b/docs/installation/frameworks/vuejs-v2.md @@ -754,4 +754,4 @@ Corresponds to the {@link module:core/editor/editor~Editor#event:destroy `destro ## Contributing and reporting issues -The source code of this component is available on GitHub in https://github.com/ckeditor/ckeditor5-vue2. +The source code of this component is available on GitHub in [https://github.com/ckeditor/ckeditor5-vue2](https://github.com/ckeditor/ckeditor5-vue2). diff --git a/docs/installation/frameworks/vuejs-v3.md b/docs/installation/frameworks/vuejs-v3.md index cf6cd2137fd..eb018feb6f4 100644 --- a/docs/installation/frameworks/vuejs-v3.md +++ b/docs/installation/frameworks/vuejs-v3.md @@ -754,4 +754,4 @@ Corresponds to the {@link module:core/editor/editor~Editor#event:destroy `destro ## Contributing and reporting issues -The source code of this component is available on GitHub in https://github.com/ckeditor/ckeditor5-vue. +The source code of this component is available on GitHub in [https://github.com/ckeditor/ckeditor5-vue](https://github.com/ckeditor/ckeditor5-vue). diff --git a/docs/installation/getting-started/configuration.md b/docs/installation/getting-started/configuration.md index d64f89917b0..5ed7ebe2764 100644 --- a/docs/installation/getting-started/configuration.md +++ b/docs/installation/getting-started/configuration.md @@ -74,7 +74,7 @@ ClassicEditor However, using this snippet with the official classic build of CKEditor 5 will result in an error thrown in the console of the browser: ``` CKEditorError: plugincollection-required {"plugin":"Link","requiredBy":"CKFinder"}` -Read more: https://ckeditor.com/docs/ckeditor5/latest/support/error-codes.html#error-plugincollection-required +Read more: [https://ckeditor.com/docs/ckeditor5/latest/support/error-codes.html#error-plugincollection-required](https://ckeditor.com/docs/ckeditor5/latest/support/error-codes.html#error-plugincollection-required) ``` This is a good time to remind you that some plugins in CKEditor 5 depend on each other. In this case, the `CKFinder` plugin requires the `Link` plugin to work. To make the above snippet work, the `CKFinder` plugin must also be deleted: diff --git a/packages/ckeditor5-adapter-ckfinder/docs/api/adapter-ckfinder.md b/packages/ckeditor5-adapter-ckfinder/docs/api/adapter-ckfinder.md index 48422702431..86c881e8b2a 100644 --- a/packages/ckeditor5-adapter-ckfinder/docs/api/adapter-ckfinder.md +++ b/packages/ckeditor5-adapter-ckfinder/docs/api/adapter-ckfinder.md @@ -22,7 +22,7 @@ npm install --save @ckeditor/ckeditor5-adapter-ckfinder ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-adapter-ckfinder. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-adapter-ckfinder](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-adapter-ckfinder). ## External links diff --git a/packages/ckeditor5-alignment/docs/api/alignment.md b/packages/ckeditor5-alignment/docs/api/alignment.md index 8d7a0534c14..539be294ca4 100644 --- a/packages/ckeditor5-alignment/docs/api/alignment.md +++ b/packages/ckeditor5-alignment/docs/api/alignment.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-alignment ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-alignment. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-alignment](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-alignment). ## External links diff --git a/packages/ckeditor5-alignment/docs/features/text-alignment.md b/packages/ckeditor5-alignment/docs/features/text-alignment.md index 8afce22199b..1ec07958bfc 100644 --- a/packages/ckeditor5-alignment/docs/features/text-alignment.md +++ b/packages/ckeditor5-alignment/docs/features/text-alignment.md @@ -157,4 +157,4 @@ Block elements such as `

` with the `align` attribute are accepted by the plug ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-alignment. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-alignment](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-alignment). diff --git a/packages/ckeditor5-autoformat/docs/api/autoformat.md b/packages/ckeditor5-autoformat/docs/api/autoformat.md index cc35d0ebac7..4fb02c17a7f 100644 --- a/packages/ckeditor5-autoformat/docs/api/autoformat.md +++ b/packages/ckeditor5-autoformat/docs/api/autoformat.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-autoformat ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-autoformat. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-autoformat](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-autoformat). ## External links diff --git a/packages/ckeditor5-autoformat/docs/features/autoformat.md b/packages/ckeditor5-autoformat/docs/features/autoformat.md index 775f35e11c0..2a483b9faea 100644 --- a/packages/ckeditor5-autoformat/docs/features/autoformat.md +++ b/packages/ckeditor5-autoformat/docs/features/autoformat.md @@ -108,4 +108,4 @@ While the autoformatting feature is stable and ready to use, some issues were re ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-autoformat. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-autoformat](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-autoformat). diff --git a/packages/ckeditor5-autosave/docs/api/autosave.md b/packages/ckeditor5-autosave/docs/api/autosave.md index 3635cc2a8dd..594b05d919b 100644 --- a/packages/ckeditor5-autosave/docs/api/autosave.md +++ b/packages/ckeditor5-autosave/docs/api/autosave.md @@ -20,7 +20,7 @@ npm install --save @ckeditor/ckeditor5-autosave ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-autosave. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-autosave](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-autosave). ## External links diff --git a/packages/ckeditor5-basic-styles/docs/api/basic-styles.md b/packages/ckeditor5-basic-styles/docs/api/basic-styles.md index 2e1658dff3a..8646ebb183b 100644 --- a/packages/ckeditor5-basic-styles/docs/api/basic-styles.md +++ b/packages/ckeditor5-basic-styles/docs/api/basic-styles.md @@ -34,7 +34,7 @@ npm install --save @ckeditor/ckeditor5-basic-styles ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-basic-styles. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-basic-styles](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-basic-styles). ## External links diff --git a/packages/ckeditor5-basic-styles/docs/features/basic-styles.md b/packages/ckeditor5-basic-styles/docs/features/basic-styles.md index f870dbb1717..cb9c3c079aa 100644 --- a/packages/ckeditor5-basic-styles/docs/features/basic-styles.md +++ b/packages/ckeditor5-basic-styles/docs/features/basic-styles.md @@ -136,4 +136,4 @@ editor.execute( 'bold' ); ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-basic-styles. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-basic-styles](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-basic-styles). diff --git a/packages/ckeditor5-block-quote/docs/api/block-quote.md b/packages/ckeditor5-block-quote/docs/api/block-quote.md index d26fd990eff..db375b7f8e8 100644 --- a/packages/ckeditor5-block-quote/docs/api/block-quote.md +++ b/packages/ckeditor5-block-quote/docs/api/block-quote.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-block-quote ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-block-quote. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-block-quote](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-block-quote). ## External links diff --git a/packages/ckeditor5-block-quote/docs/features/block-quote.md b/packages/ckeditor5-block-quote/docs/features/block-quote.md index f3912d25013..3802cd1e953 100644 --- a/packages/ckeditor5-block-quote/docs/features/block-quote.md +++ b/packages/ckeditor5-block-quote/docs/features/block-quote.md @@ -128,4 +128,4 @@ editor.execute( 'blockQuote' ); ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-block-quote. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-block-quote](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-block-quote). diff --git a/packages/ckeditor5-ckbox/docs/api/ckbox.md b/packages/ckeditor5-ckbox/docs/api/ckbox.md index 8f9da2cc398..be88cd5f9c4 100644 --- a/packages/ckeditor5-ckbox/docs/api/ckbox.md +++ b/packages/ckeditor5-ckbox/docs/api/ckbox.md @@ -26,7 +26,7 @@ npm install --save @ckeditor/ckeditor5-ckbox ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ckbox. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ckbox](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ckbox). ## External links diff --git a/packages/ckeditor5-ckbox/docs/features/ckbox.md b/packages/ckeditor5-ckbox/docs/features/ckbox.md index 709c6afc265..930079758ec 100644 --- a/packages/ckeditor5-ckbox/docs/features/ckbox.md +++ b/packages/ckeditor5-ckbox/docs/features/ckbox.md @@ -228,5 +228,4 @@ See the {@link features/images-overview image feature} guide to find out more ab ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ckbox. - +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ckbox](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ckbox). diff --git a/packages/ckeditor5-ckfinder/docs/api/ckfinder.md b/packages/ckeditor5-ckfinder/docs/api/ckfinder.md index 60a85f34d59..dc43d54f461 100644 --- a/packages/ckeditor5-ckfinder/docs/api/ckfinder.md +++ b/packages/ckeditor5-ckfinder/docs/api/ckfinder.md @@ -26,7 +26,7 @@ npm install --save @ckeditor/ckeditor5-ckfinder ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ckfinder. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ckfinder](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ckfinder). ## External links diff --git a/packages/ckeditor5-ckfinder/docs/features/ckfinder.md b/packages/ckeditor5-ckfinder/docs/features/ckfinder.md index e20b4874bfd..63e2f890ed7 100644 --- a/packages/ckeditor5-ckfinder/docs/features/ckfinder.md +++ b/packages/ckeditor5-ckfinder/docs/features/ckfinder.md @@ -232,5 +232,4 @@ See the {@link features/images-overview image feature guide} to find out more ab ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ckfinder. - +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ckfinder](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ckfinder). diff --git a/packages/ckeditor5-clipboard/docs/api/clipboard.md b/packages/ckeditor5-clipboard/docs/api/clipboard.md index 235b62e6e7a..769cd16fc80 100644 --- a/packages/ckeditor5-clipboard/docs/api/clipboard.md +++ b/packages/ckeditor5-clipboard/docs/api/clipboard.md @@ -22,7 +22,7 @@ npm install --save @ckeditor/ckeditor5-clipboard ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-clipboard. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-clipboard](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-clipboard). ## External links diff --git a/packages/ckeditor5-cloud-services/docs/api/cloud-services.md b/packages/ckeditor5-cloud-services/docs/api/cloud-services.md index 29b10936f1a..c7173a8f78e 100644 --- a/packages/ckeditor5-cloud-services/docs/api/cloud-services.md +++ b/packages/ckeditor5-cloud-services/docs/api/cloud-services.md @@ -16,7 +16,7 @@ npm install --save @ckeditor/ckeditor5-cloud-services ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-cloud-services. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-cloud-services](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-cloud-services). ## External links diff --git a/packages/ckeditor5-code-block/docs/api/code-block.md b/packages/ckeditor5-code-block/docs/api/code-block.md index 94fc26b5027..4bb767d68c5 100644 --- a/packages/ckeditor5-code-block/docs/api/code-block.md +++ b/packages/ckeditor5-code-block/docs/api/code-block.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-code-block ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-code-block. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-code-block](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-code-block). ## External links diff --git a/packages/ckeditor5-code-block/docs/features/code-blocks.md b/packages/ckeditor5-code-block/docs/features/code-blocks.md index ebab6efb3e1..051451adfc0 100644 --- a/packages/ckeditor5-code-block/docs/features/code-blocks.md +++ b/packages/ckeditor5-code-block/docs/features/code-blocks.md @@ -217,4 +217,4 @@ The {@link module:code-block/codeblock~CodeBlock} plugin registers: ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-code-block. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-code-block](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-code-block). diff --git a/packages/ckeditor5-core/docs/api/core.md b/packages/ckeditor5-core/docs/api/core.md index a2d0b915cf7..55b5ba8e505 100644 --- a/packages/ckeditor5-core/docs/api/core.md +++ b/packages/ckeditor5-core/docs/api/core.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-core ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-core. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-core](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-core). ## External links diff --git a/packages/ckeditor5-easy-image/docs/api/easy-image.md b/packages/ckeditor5-easy-image/docs/api/easy-image.md index 025398dab21..a2f75ad89ac 100644 --- a/packages/ckeditor5-easy-image/docs/api/easy-image.md +++ b/packages/ckeditor5-easy-image/docs/api/easy-image.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-easy-image ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-easy-image. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-easy-image](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-easy-image). ## External links diff --git a/packages/ckeditor5-easy-image/docs/features/easy-image.md b/packages/ckeditor5-easy-image/docs/features/easy-image.md index 313eb7b1e7b..a24c81d4d73 100644 --- a/packages/ckeditor5-easy-image/docs/features/easy-image.md +++ b/packages/ckeditor5-easy-image/docs/features/easy-image.md @@ -162,4 +162,4 @@ See the {@link features/images-overview Image feature} guide to find out more ab ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-easy-image. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-easy-image](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-easy-image). diff --git a/packages/ckeditor5-editor-balloon/docs/api/editor-balloon.md b/packages/ckeditor5-editor-balloon/docs/api/editor-balloon.md index ae8b1cc6e76..f625610bd18 100644 --- a/packages/ckeditor5-editor-balloon/docs/api/editor-balloon.md +++ b/packages/ckeditor5-editor-balloon/docs/api/editor-balloon.md @@ -22,7 +22,7 @@ npm install --save @ckeditor/ckeditor5-editor-balloon ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-editor-balloon. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-editor-balloon](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-editor-balloon). ## External links diff --git a/packages/ckeditor5-editor-classic/docs/api/editor-classic.md b/packages/ckeditor5-editor-classic/docs/api/editor-classic.md index a25f438c851..2b1b5a4bc73 100644 --- a/packages/ckeditor5-editor-classic/docs/api/editor-classic.md +++ b/packages/ckeditor5-editor-classic/docs/api/editor-classic.md @@ -22,7 +22,7 @@ npm install --save @ckeditor/ckeditor5-editor-classic ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-editor-classic. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-editor-classic](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-editor-classic). ## External links diff --git a/packages/ckeditor5-editor-decoupled/docs/api/editor-decoupled.md b/packages/ckeditor5-editor-decoupled/docs/api/editor-decoupled.md index a3a090840e2..6c23e30c1a2 100644 --- a/packages/ckeditor5-editor-decoupled/docs/api/editor-decoupled.md +++ b/packages/ckeditor5-editor-decoupled/docs/api/editor-decoupled.md @@ -22,7 +22,7 @@ npm install --save @ckeditor/ckeditor5-editor-decoupled ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-editor-decoupled. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-editor-decoupled](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-editor-decoupled). ## External links diff --git a/packages/ckeditor5-editor-inline/docs/api/editor-inline.md b/packages/ckeditor5-editor-inline/docs/api/editor-inline.md index 5d7cc6ec2fe..106b0b6bebe 100644 --- a/packages/ckeditor5-editor-inline/docs/api/editor-inline.md +++ b/packages/ckeditor5-editor-inline/docs/api/editor-inline.md @@ -22,7 +22,7 @@ npm install --save @ckeditor/ckeditor5-editor-inline ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-editor-inline. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-editor-inline](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-editor-inline). ## External links diff --git a/packages/ckeditor5-engine/docs/api/engine.md b/packages/ckeditor5-engine/docs/api/engine.md index 9934ef89dfe..273150dd0c4 100644 --- a/packages/ckeditor5-engine/docs/api/engine.md +++ b/packages/ckeditor5-engine/docs/api/engine.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-engine ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-engine. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-engine](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-engine). ## External links diff --git a/packages/ckeditor5-enter/docs/api/enter.md b/packages/ckeditor5-enter/docs/api/enter.md index e4205a8084a..b2991a4722d 100644 --- a/packages/ckeditor5-enter/docs/api/enter.md +++ b/packages/ckeditor5-enter/docs/api/enter.md @@ -22,7 +22,7 @@ npm install --save @ckeditor/ckeditor5-enter ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-enter. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-enter](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-enter). ## External links diff --git a/packages/ckeditor5-essentials/docs/api/essentials.md b/packages/ckeditor5-essentials/docs/api/essentials.md index ea64e8ded12..3290f45dddd 100644 --- a/packages/ckeditor5-essentials/docs/api/essentials.md +++ b/packages/ckeditor5-essentials/docs/api/essentials.md @@ -22,7 +22,7 @@ npm install --save @ckeditor/ckeditor5-essentials ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-essentials. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-essentials](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-essentials). ## External links diff --git a/packages/ckeditor5-find-and-replace/docs/api/find-and-replace.md b/packages/ckeditor5-find-and-replace/docs/api/find-and-replace.md index 2d1859ea280..928d854b2ea 100644 --- a/packages/ckeditor5-find-and-replace/docs/api/find-and-replace.md +++ b/packages/ckeditor5-find-and-replace/docs/api/find-and-replace.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-find-and-replace ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-find-and-replace. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-find-and-replace](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-find-and-replace). ## External links diff --git a/packages/ckeditor5-find-and-replace/docs/features/find-and-replace.md b/packages/ckeditor5-find-and-replace/docs/features/find-and-replace.md index ede813af0dc..504eec49887 100644 --- a/packages/ckeditor5-find-and-replace/docs/features/find-and-replace.md +++ b/packages/ckeditor5-find-and-replace/docs/features/find-and-replace.md @@ -83,4 +83,4 @@ editor.execute( 'replaceAll', 'diesel', 'steam' ); ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-find-and-replace. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-find-and-replace](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-find-and-replace). diff --git a/packages/ckeditor5-font/docs/api/font.md b/packages/ckeditor5-font/docs/api/font.md index 21c1596ea13..ffe308392e9 100644 --- a/packages/ckeditor5-font/docs/api/font.md +++ b/packages/ckeditor5-font/docs/api/font.md @@ -28,7 +28,7 @@ npm install --save @ckeditor/ckeditor5-font ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-font. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-font](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-font). ## External links diff --git a/packages/ckeditor5-font/docs/features/font.md b/packages/ckeditor5-font/docs/features/font.md index f7c53777d3c..11c1479c3c9 100644 --- a/packages/ckeditor5-font/docs/features/font.md +++ b/packages/ckeditor5-font/docs/features/font.md @@ -519,4 +519,4 @@ Text formatted with `` is accepted by the plugin, but the editor always re ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-font. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-font](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-font). diff --git a/packages/ckeditor5-heading/docs/api/heading.md b/packages/ckeditor5-heading/docs/api/heading.md index fdb1dd2611b..5bd304bb8b0 100644 --- a/packages/ckeditor5-heading/docs/api/heading.md +++ b/packages/ckeditor5-heading/docs/api/heading.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-heading ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-heading. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-heading](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-heading). ## External links diff --git a/packages/ckeditor5-heading/docs/features/headings.md b/packages/ckeditor5-heading/docs/features/headings.md index c596ff94851..31cf591bfa1 100644 --- a/packages/ckeditor5-heading/docs/features/headings.md +++ b/packages/ckeditor5-heading/docs/features/headings.md @@ -234,4 +234,4 @@ The {@link module:paragraph/paragraphbuttonui~ParagraphButtonUI} plugin register ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-heading. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-heading](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-heading). diff --git a/packages/ckeditor5-heading/docs/features/title.md b/packages/ckeditor5-heading/docs/features/title.md index 7c720ce757f..7f9cc0c6079 100644 --- a/packages/ckeditor5-heading/docs/features/title.md +++ b/packages/ckeditor5-heading/docs/features/title.md @@ -96,4 +96,4 @@ In the CKEditor 5 data model the document title is represented as follows: ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-heading. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-heading](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-heading). diff --git a/packages/ckeditor5-highlight/docs/api/highlight.md b/packages/ckeditor5-highlight/docs/api/highlight.md index f08fb2d23d9..ef5b4d894a4 100644 --- a/packages/ckeditor5-highlight/docs/api/highlight.md +++ b/packages/ckeditor5-highlight/docs/api/highlight.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-highlight ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-highlight. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-highlight](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-highlight). ## External links diff --git a/packages/ckeditor5-highlight/docs/features/highlight.md b/packages/ckeditor5-highlight/docs/features/highlight.md index 14bfa0e32d9..e2f95db2a0d 100644 --- a/packages/ckeditor5-highlight/docs/features/highlight.md +++ b/packages/ckeditor5-highlight/docs/features/highlight.md @@ -253,4 +253,4 @@ The {@link module:highlight/highlight~Highlight} plugin registers: ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-highlight. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-highlight](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-highlight). diff --git a/packages/ckeditor5-horizontal-line/docs/api/horizontal-line.md b/packages/ckeditor5-horizontal-line/docs/api/horizontal-line.md index f8ab3a5ee16..cea328e264b 100644 --- a/packages/ckeditor5-horizontal-line/docs/api/horizontal-line.md +++ b/packages/ckeditor5-horizontal-line/docs/api/horizontal-line.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-horizontal-line ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-horizontal-line. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-horizontal-line](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-horizontal-line). ## External links diff --git a/packages/ckeditor5-horizontal-line/docs/features/horizontal-line.md b/packages/ckeditor5-horizontal-line/docs/features/horizontal-line.md index c06800f460e..35c2266d3c4 100644 --- a/packages/ckeditor5-horizontal-line/docs/features/horizontal-line.md +++ b/packages/ckeditor5-horizontal-line/docs/features/horizontal-line.md @@ -77,4 +77,4 @@ editor.execute( 'horizontalLine' ); ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-horizontal-line. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-horizontal-line](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-horizontal-line). diff --git a/packages/ckeditor5-html-embed/docs/api/html-embed.md b/packages/ckeditor5-html-embed/docs/api/html-embed.md index fe14ef10ae9..1d59d9a0407 100644 --- a/packages/ckeditor5-html-embed/docs/api/html-embed.md +++ b/packages/ckeditor5-html-embed/docs/api/html-embed.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-html-embed ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-html-embed. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-html-embed](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-html-embed). ## External links diff --git a/packages/ckeditor5-html-embed/docs/features/html-embed.md b/packages/ckeditor5-html-embed/docs/features/html-embed.md index c3d6edaaa60..b0637d06927 100644 --- a/packages/ckeditor5-html-embed/docs/features/html-embed.md +++ b/packages/ckeditor5-html-embed/docs/features/html-embed.md @@ -162,4 +162,4 @@ editor.execute( 'htmlEmbed', 'New content.' ); ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-html-embed. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-html-embed](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-html-embed). diff --git a/packages/ckeditor5-html-support/docs/api/html-support.md b/packages/ckeditor5-html-support/docs/api/html-support.md index 025545880ad..272558213c4 100644 --- a/packages/ckeditor5-html-support/docs/api/html-support.md +++ b/packages/ckeditor5-html-support/docs/api/html-support.md @@ -32,7 +32,7 @@ npm install --save @ckeditor/ckeditor5-html-support ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-html-support. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-html-support](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-html-support). ## External links diff --git a/packages/ckeditor5-html-support/docs/features/general-html-support.md b/packages/ckeditor5-html-support/docs/features/general-html-support.md index 51ac8ced75c..8c8c18ec98d 100644 --- a/packages/ckeditor5-html-support/docs/features/general-html-support.md +++ b/packages/ckeditor5-html-support/docs/features/general-html-support.md @@ -380,4 +380,4 @@ There are other HTML editing related CKEditor 5 features you may want to check: ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-html-support. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-html-support](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-html-support). diff --git a/packages/ckeditor5-image/docs/api/image.md b/packages/ckeditor5-image/docs/api/image.md index c2a7c6a65a0..c2b15600405 100644 --- a/packages/ckeditor5-image/docs/api/image.md +++ b/packages/ckeditor5-image/docs/api/image.md @@ -32,7 +32,7 @@ npm install --save @ckeditor/ckeditor5-image ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image). ## External links diff --git a/packages/ckeditor5-image/docs/features/images-captions.md b/packages/ckeditor5-image/docs/features/images-captions.md index 2fa3c29ee0d..87bc2ccf21a 100644 --- a/packages/ckeditor5-image/docs/features/images-captions.md +++ b/packages/ckeditor5-image/docs/features/images-captions.md @@ -45,4 +45,4 @@ The {@link module:image/imagecaption~ImageCaption} plugin registers: ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image). diff --git a/packages/ckeditor5-image/docs/features/images-inserting.md b/packages/ckeditor5-image/docs/features/images-inserting.md index 09c5da3f450..8a104f9b429 100644 --- a/packages/ckeditor5-image/docs/features/images-inserting.md +++ b/packages/ckeditor5-image/docs/features/images-inserting.md @@ -74,4 +74,4 @@ The {@link module:image/imageupload~ImageUpload} plugin registers: ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image). diff --git a/packages/ckeditor5-image/docs/features/images-installation.md b/packages/ckeditor5-image/docs/features/images-installation.md index 27757e6cd63..dd6d4787929 100644 --- a/packages/ckeditor5-image/docs/features/images-installation.md +++ b/packages/ckeditor5-image/docs/features/images-installation.md @@ -94,4 +94,4 @@ By default, the {@link module:image/image~Image} plugin available in all {@link ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image). diff --git a/packages/ckeditor5-image/docs/features/images-linking.md b/packages/ckeditor5-image/docs/features/images-linking.md index 8280e81bc91..f161e9b05f5 100644 --- a/packages/ckeditor5-image/docs/features/images-linking.md +++ b/packages/ckeditor5-image/docs/features/images-linking.md @@ -60,4 +60,4 @@ The {@link module:link/linkimage~LinkImage} plugin registers: ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-link. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-link](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-link). diff --git a/packages/ckeditor5-image/docs/features/images-overview.md b/packages/ckeditor5-image/docs/features/images-overview.md index 671b9528026..972682a8bfb 100644 --- a/packages/ckeditor5-image/docs/features/images-overview.md +++ b/packages/ckeditor5-image/docs/features/images-overview.md @@ -207,4 +207,4 @@ You can also use the **Insert paragraph** handles on the bottom or top edge of t ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image). diff --git a/packages/ckeditor5-image/docs/features/images-resizing.md b/packages/ckeditor5-image/docs/features/images-resizing.md index c709f5ad40c..8a703d0c6bc 100644 --- a/packages/ckeditor5-image/docs/features/images-resizing.md +++ b/packages/ckeditor5-image/docs/features/images-resizing.md @@ -317,4 +317,4 @@ The {@link module:image/imageresize~ImageResize} plugin registers: ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image). diff --git a/packages/ckeditor5-image/docs/features/images-styles.md b/packages/ckeditor5-image/docs/features/images-styles.md index 0380689d91d..915ffdd014d 100644 --- a/packages/ckeditor5-image/docs/features/images-styles.md +++ b/packages/ckeditor5-image/docs/features/images-styles.md @@ -438,4 +438,4 @@ The {@link module:image/imagestyle~ImageStyle} plugin registers: ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image). diff --git a/packages/ckeditor5-image/docs/features/images-text-alternative.md b/packages/ckeditor5-image/docs/features/images-text-alternative.md index ed3d4f3d3cd..9c9c39b5e9c 100644 --- a/packages/ckeditor5-image/docs/features/images-text-alternative.md +++ b/packages/ckeditor5-image/docs/features/images-text-alternative.md @@ -49,4 +49,4 @@ The {@link module:image/imagetextalternative~ImageTextAlternative} plugin regist ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-image). diff --git a/packages/ckeditor5-indent/docs/api/indent.md b/packages/ckeditor5-indent/docs/api/indent.md index 59786abc586..c3b236706e6 100644 --- a/packages/ckeditor5-indent/docs/api/indent.md +++ b/packages/ckeditor5-indent/docs/api/indent.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-indent ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-indent. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-indent](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-indent). ## External links diff --git a/packages/ckeditor5-indent/docs/features/indent.md b/packages/ckeditor5-indent/docs/features/indent.md index 83f1580da92..8fcae0a8d4a 100644 --- a/packages/ckeditor5-indent/docs/features/indent.md +++ b/packages/ckeditor5-indent/docs/features/indent.md @@ -199,4 +199,4 @@ The {@link module:indent/indentblock~IndentBlock} plugin registers the following ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-font. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-font](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-font). diff --git a/packages/ckeditor5-language/docs/api/language.md b/packages/ckeditor5-language/docs/api/language.md index c983a85b01e..2e6b4540e89 100644 --- a/packages/ckeditor5-language/docs/api/language.md +++ b/packages/ckeditor5-language/docs/api/language.md @@ -28,7 +28,7 @@ npm install --save @ckeditor/ckeditor5-language ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-language. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-language](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-language). ## External links diff --git a/packages/ckeditor5-language/docs/features/language.md b/packages/ckeditor5-language/docs/features/language.md index 3ec68ead3ee..5f7a02ce6c5 100644 --- a/packages/ckeditor5-language/docs/features/language.md +++ b/packages/ckeditor5-language/docs/features/language.md @@ -101,4 +101,4 @@ editor.execute( 'textPartLanguage', { languageCode: 'es' } ); ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-language. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-language](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-language). diff --git a/packages/ckeditor5-link/docs/api/link.md b/packages/ckeditor5-link/docs/api/link.md index 0b133b1a0c7..b3471167a00 100644 --- a/packages/ckeditor5-link/docs/api/link.md +++ b/packages/ckeditor5-link/docs/api/link.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-link ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-link. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-link](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-link). ## External links diff --git a/packages/ckeditor5-link/docs/features/link.md b/packages/ckeditor5-link/docs/features/link.md index e4bc060dcd3..dcb9b87d8bc 100644 --- a/packages/ckeditor5-link/docs/features/link.md +++ b/packages/ckeditor5-link/docs/features/link.md @@ -322,4 +322,4 @@ Links are represented in the {@link module:engine/model/model~Model model} using ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-link. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-link](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-link). diff --git a/packages/ckeditor5-list/docs/api/list.md b/packages/ckeditor5-list/docs/api/list.md index a3a90ebee74..e10a9b2ee5b 100644 --- a/packages/ckeditor5-list/docs/api/list.md +++ b/packages/ckeditor5-list/docs/api/list.md @@ -20,7 +20,7 @@ npm install --save @ckeditor/ckeditor5-list ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-list. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-list](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-list). ## External links diff --git a/packages/ckeditor5-list/docs/features/document-lists.md b/packages/ckeditor5-list/docs/features/document-lists.md index ed80de80268..cb7ece3a5bc 100644 --- a/packages/ckeditor5-list/docs/features/document-lists.md +++ b/packages/ckeditor5-list/docs/features/document-lists.md @@ -143,4 +143,4 @@ The {@link module:list/documentlistproperties~DocumentListProperties} plugin reg ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-list. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-list](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-list). diff --git a/packages/ckeditor5-list/docs/features/lists.md b/packages/ckeditor5-list/docs/features/lists.md index a75811313b3..3d851d4c6bd 100644 --- a/packages/ckeditor5-list/docs/features/lists.md +++ b/packages/ckeditor5-list/docs/features/lists.md @@ -212,4 +212,4 @@ The {@link module:list/listproperties~ListProperties} plugin registers: ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-list. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-list](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-list). diff --git a/packages/ckeditor5-list/docs/features/todo-lists.md b/packages/ckeditor5-list/docs/features/todo-lists.md index a039e0ccc32..f6e1f1263d8 100644 --- a/packages/ckeditor5-list/docs/features/todo-lists.md +++ b/packages/ckeditor5-list/docs/features/todo-lists.md @@ -110,4 +110,4 @@ You can read more about these features in the {@link features/lists lists featur ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-list. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-list](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-list). diff --git a/packages/ckeditor5-markdown-gfm/docs/api/markdown-gfm.md b/packages/ckeditor5-markdown-gfm/docs/api/markdown-gfm.md index f9eacc0a472..3582ff6f069 100644 --- a/packages/ckeditor5-markdown-gfm/docs/api/markdown-gfm.md +++ b/packages/ckeditor5-markdown-gfm/docs/api/markdown-gfm.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-markdown-gfm ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-markdown-gfm. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-markdown-gfm](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-markdown-gfm). ## External links diff --git a/packages/ckeditor5-markdown-gfm/docs/features/markdown.md b/packages/ckeditor5-markdown-gfm/docs/features/markdown.md index 9a7f27157cc..64a7fba05ab 100644 --- a/packages/ckeditor5-markdown-gfm/docs/features/markdown.md +++ b/packages/ckeditor5-markdown-gfm/docs/features/markdown.md @@ -114,4 +114,4 @@ While the Markdown plugin is stable and ready to use, some issues are still bein ## Contribute -The source code of this feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-markdown-gfm. +The source code of this feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-markdown-gfm](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-markdown-gfm). diff --git a/packages/ckeditor5-media-embed/docs/api/media-embed.md b/packages/ckeditor5-media-embed/docs/api/media-embed.md index 404a8c09f2b..e5f46ee671a 100644 --- a/packages/ckeditor5-media-embed/docs/api/media-embed.md +++ b/packages/ckeditor5-media-embed/docs/api/media-embed.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-media-embed ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-media-embed. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-media-embed](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-media-embed). ## External links diff --git a/packages/ckeditor5-media-embed/docs/features/media-embed.md b/packages/ckeditor5-media-embed/docs/features/media-embed.md index c33bec6f154..07b2c8ced8a 100644 --- a/packages/ckeditor5-media-embed/docs/features/media-embed.md +++ b/packages/ckeditor5-media-embed/docs/features/media-embed.md @@ -223,7 +223,7 @@ ClassicEditor .catch( ... ); ``` -You can take inspiration from the default configuration of this feature which you can find in: https://github.com/ckeditor/ckeditor5/blob/master/packages/ckeditor5-media-embed/src/mediaembedediting.js +You can take inspiration from the default configuration of this feature which you can find in: [https://github.com/ckeditor/ckeditor5/blob/master/packages/ckeditor5-media-embed/src/mediaembedediting.js](https://github.com/ckeditor/ckeditor5/blob/master/packages/ckeditor5-media-embed/src/mediaembedediting.js) ## Using external services for preview @@ -480,4 +480,4 @@ The {@link module:media-embed/mediaembed~MediaEmbed} plugin registers: ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-media-embed. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-media-embed](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-media-embed). diff --git a/packages/ckeditor5-mention/docs/api/mention.md b/packages/ckeditor5-mention/docs/api/mention.md index 486fd6b1535..6b8e3265ed0 100644 --- a/packages/ckeditor5-mention/docs/api/mention.md +++ b/packages/ckeditor5-mention/docs/api/mention.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-mention ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-mention. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-mention](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-mention). ## External links diff --git a/packages/ckeditor5-mention/docs/features/mentions.md b/packages/ckeditor5-mention/docs/features/mentions.md index 69f4948dd13..24d4aacaa47 100644 --- a/packages/ckeditor5-mention/docs/features/mentions.md +++ b/packages/ckeditor5-mention/docs/features/mentions.md @@ -522,4 +522,4 @@ The {@link module:mention/mention~Mention} plugin registers: ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-mention. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-mention](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-mention). diff --git a/packages/ckeditor5-minimap/docs/api/minimap.md b/packages/ckeditor5-minimap/docs/api/minimap.md index b9547311a2d..248f296ebda 100644 --- a/packages/ckeditor5-minimap/docs/api/minimap.md +++ b/packages/ckeditor5-minimap/docs/api/minimap.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-minimap ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-minimap. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-minimap](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-minimap). ## External links diff --git a/packages/ckeditor5-page-break/docs/api/page-break.md b/packages/ckeditor5-page-break/docs/api/page-break.md index aa77b9f5103..5a556b84c02 100644 --- a/packages/ckeditor5-page-break/docs/api/page-break.md +++ b/packages/ckeditor5-page-break/docs/api/page-break.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-page-break ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-page-break. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-page-break](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-page-break). ## External links diff --git a/packages/ckeditor5-page-break/docs/features/page-break.md b/packages/ckeditor5-page-break/docs/features/page-break.md index 0b2b86b9d50..7de8517d439 100644 --- a/packages/ckeditor5-page-break/docs/features/page-break.md +++ b/packages/ckeditor5-page-break/docs/features/page-break.md @@ -77,4 +77,4 @@ editor.execute( 'pageBreak' ); ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-page-break. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-page-break](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-page-break). diff --git a/packages/ckeditor5-paragraph/docs/api/paragraph.md b/packages/ckeditor5-paragraph/docs/api/paragraph.md index 1689fe34ba3..b226d272d93 100644 --- a/packages/ckeditor5-paragraph/docs/api/paragraph.md +++ b/packages/ckeditor5-paragraph/docs/api/paragraph.md @@ -20,7 +20,7 @@ npm install --save @ckeditor/ckeditor5-paragraph ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-paragraph. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-paragraph](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-paragraph). ## External links diff --git a/packages/ckeditor5-paste-from-office/docs/api/paste-from-office.md b/packages/ckeditor5-paste-from-office/docs/api/paste-from-office.md index 94f19655637..e6527eceb58 100644 --- a/packages/ckeditor5-paste-from-office/docs/api/paste-from-office.md +++ b/packages/ckeditor5-paste-from-office/docs/api/paste-from-office.md @@ -20,7 +20,7 @@ npm install --save @ckeditor/ckeditor5-paste-from-office ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-paste-from-office. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-paste-from-office](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-paste-from-office). ## External links diff --git a/packages/ckeditor5-remove-format/docs/api/remove-format.md b/packages/ckeditor5-remove-format/docs/api/remove-format.md index 617b90eadfe..bcc4e524851 100644 --- a/packages/ckeditor5-remove-format/docs/api/remove-format.md +++ b/packages/ckeditor5-remove-format/docs/api/remove-format.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-remove-format ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-remove-format. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-remove-format](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-remove-format). ## External links diff --git a/packages/ckeditor5-remove-format/docs/features/remove-format.md b/packages/ckeditor5-remove-format/docs/features/remove-format.md index b6cd0dcf2bc..82f8aafdecb 100644 --- a/packages/ckeditor5-remove-format/docs/features/remove-format.md +++ b/packages/ckeditor5-remove-format/docs/features/remove-format.md @@ -119,4 +119,4 @@ editor.execute( 'removeFormat' ); ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-remove-format. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-remove-format](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-remove-format). diff --git a/packages/ckeditor5-restricted-editing/docs/api/restricted-editing.md b/packages/ckeditor5-restricted-editing/docs/api/restricted-editing.md index a134c3313c3..254701a2543 100644 --- a/packages/ckeditor5-restricted-editing/docs/api/restricted-editing.md +++ b/packages/ckeditor5-restricted-editing/docs/api/restricted-editing.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-restricted-editing ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-restricted-editing. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-restricted-editing](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-restricted-editing). ## External links diff --git a/packages/ckeditor5-restricted-editing/docs/features/restricted-editing.md b/packages/ckeditor5-restricted-editing/docs/features/restricted-editing.md index 771494550f5..801b631c622 100644 --- a/packages/ckeditor5-restricted-editing/docs/features/restricted-editing.md +++ b/packages/ckeditor5-restricted-editing/docs/features/restricted-editing.md @@ -153,4 +153,4 @@ When using [real-time collaboration](https://ckeditor.com/collaboration/real-tim ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-restricted-editing. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-restricted-editing](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-restricted-editing). diff --git a/packages/ckeditor5-select-all/docs/api/select-all.md b/packages/ckeditor5-select-all/docs/api/select-all.md index 88aed1eca9f..0f6028d0e3d 100644 --- a/packages/ckeditor5-select-all/docs/api/select-all.md +++ b/packages/ckeditor5-select-all/docs/api/select-all.md @@ -26,7 +26,7 @@ npm install --save @ckeditor/ckeditor5-select-all ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-select-all. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-select-all](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-select-all). ## External links diff --git a/packages/ckeditor5-select-all/docs/features/select-all.md b/packages/ckeditor5-select-all/docs/features/select-all.md index d78c2f0ce3a..1b53979e4fb 100644 --- a/packages/ckeditor5-select-all/docs/features/select-all.md +++ b/packages/ckeditor5-select-all/docs/features/select-all.md @@ -79,4 +79,4 @@ editor.execute( 'selectAll' ); ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-select-all. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-select-all](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-select-all). diff --git a/packages/ckeditor5-source-editing/docs/api/source-editing.md b/packages/ckeditor5-source-editing/docs/api/source-editing.md index 9a9322d30fb..a0c4227766a 100644 --- a/packages/ckeditor5-source-editing/docs/api/source-editing.md +++ b/packages/ckeditor5-source-editing/docs/api/source-editing.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-source-editing ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-source-editing. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-source-editing](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-source-editing). ## External links diff --git a/packages/ckeditor5-source-editing/docs/features/source-editing.md b/packages/ckeditor5-source-editing/docs/features/source-editing.md index 4fbbe4607b0..4b0765763b1 100644 --- a/packages/ckeditor5-source-editing/docs/features/source-editing.md +++ b/packages/ckeditor5-source-editing/docs/features/source-editing.md @@ -93,4 +93,4 @@ The {@link module:source-editing/sourceediting~SourceEditing} plugin registers: ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-source-editing. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-source-editing](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-source-editing). diff --git a/packages/ckeditor5-special-characters/docs/api/special-characters.md b/packages/ckeditor5-special-characters/docs/api/special-characters.md index a0b97e1236d..e0c1ba74c1e 100644 --- a/packages/ckeditor5-special-characters/docs/api/special-characters.md +++ b/packages/ckeditor5-special-characters/docs/api/special-characters.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-special-characters ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-special-characters. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-special-characters](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-special-characters). ## External links diff --git a/packages/ckeditor5-special-characters/docs/features/special-characters.md b/packages/ckeditor5-special-characters/docs/features/special-characters.md index 4637ff9abf3..47a8043c07a 100644 --- a/packages/ckeditor5-special-characters/docs/features/special-characters.md +++ b/packages/ckeditor5-special-characters/docs/features/special-characters.md @@ -183,4 +183,4 @@ The {@link module:special-characters/specialcharacters~SpecialCharacters} plugin ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-special-characters. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-special-characters](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-special-characters). diff --git a/packages/ckeditor5-style/docs/api/style.md b/packages/ckeditor5-style/docs/api/style.md index bedef362f9c..bc0b658ac40 100644 --- a/packages/ckeditor5-style/docs/api/style.md +++ b/packages/ckeditor5-style/docs/api/style.md @@ -20,7 +20,7 @@ npm install --save @ckeditor/ckeditor5-style ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-style. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-style](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-style). ## External links diff --git a/packages/ckeditor5-style/docs/features/style.md b/packages/ckeditor5-style/docs/features/style.md index f0f6a9f734f..8e243d6aa9e 100644 --- a/packages/ckeditor5-style/docs/features/style.md +++ b/packages/ckeditor5-style/docs/features/style.md @@ -343,4 +343,4 @@ editor.execute( 'style', 'Article category' ); ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-style. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-style](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-style). diff --git a/packages/ckeditor5-table/docs/api/table.md b/packages/ckeditor5-table/docs/api/table.md index 996fd6d2059..42ee44fa973 100644 --- a/packages/ckeditor5-table/docs/api/table.md +++ b/packages/ckeditor5-table/docs/api/table.md @@ -34,7 +34,7 @@ npm install --save @ckeditor/ckeditor5-table ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-table. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-table](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-table). ## External links diff --git a/packages/ckeditor5-table/docs/features/table.md b/packages/ckeditor5-table/docs/features/table.md index be324e68978..2cbabe90778 100644 --- a/packages/ckeditor5-table/docs/features/table.md +++ b/packages/ckeditor5-table/docs/features/table.md @@ -757,4 +757,4 @@ While the table nesting functionality is fully functional, the Markdown code gen ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-table. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-table](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-table). diff --git a/packages/ckeditor5-theme-lark/docs/api/theme-lark.md b/packages/ckeditor5-theme-lark/docs/api/theme-lark.md index 6182513e4df..7c17218dfb8 100644 --- a/packages/ckeditor5-theme-lark/docs/api/theme-lark.md +++ b/packages/ckeditor5-theme-lark/docs/api/theme-lark.md @@ -20,7 +20,7 @@ npm install --save @ckeditor/ckeditor5-theme-lark ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-theme-lark. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-theme-lark](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-theme-lark). ## External links diff --git a/packages/ckeditor5-typing/docs/api/typing.md b/packages/ckeditor5-typing/docs/api/typing.md index b6c6ea966d1..72fa07f7b44 100644 --- a/packages/ckeditor5-typing/docs/api/typing.md +++ b/packages/ckeditor5-typing/docs/api/typing.md @@ -22,7 +22,7 @@ npm install --save @ckeditor/ckeditor5-typing ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-typing. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-typing](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-typing). ## External links diff --git a/packages/ckeditor5-typing/docs/features/text-transformation.md b/packages/ckeditor5-typing/docs/features/text-transformation.md index f5ef40c141d..8ca9bdb3519 100644 --- a/packages/ckeditor5-typing/docs/features/text-transformation.md +++ b/packages/ckeditor5-typing/docs/features/text-transformation.md @@ -188,4 +188,4 @@ ClassicEditor ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-typing. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-typing](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-typing). diff --git a/packages/ckeditor5-ui/docs/api/ui.md b/packages/ckeditor5-ui/docs/api/ui.md index 26eb04d4f43..d13225cee2e 100644 --- a/packages/ckeditor5-ui/docs/api/ui.md +++ b/packages/ckeditor5-ui/docs/api/ui.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-ui ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ui. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ui](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ui). ## External links diff --git a/packages/ckeditor5-ui/docs/features/blocktoolbar.md b/packages/ckeditor5-ui/docs/features/blocktoolbar.md index af602936b61..808ee81fb46 100644 --- a/packages/ckeditor5-ui/docs/features/blocktoolbar.md +++ b/packages/ckeditor5-ui/docs/features/blocktoolbar.md @@ -107,4 +107,4 @@ BalloonEditor ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ui. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ui](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-ui). diff --git a/packages/ckeditor5-undo/docs/api/undo.md b/packages/ckeditor5-undo/docs/api/undo.md index 51f594bd326..1bea6a8ee73 100644 --- a/packages/ckeditor5-undo/docs/api/undo.md +++ b/packages/ckeditor5-undo/docs/api/undo.md @@ -22,7 +22,7 @@ npm install --save @ckeditor/ckeditor5-undo ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-undo. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-undo](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-undo). ## External links diff --git a/packages/ckeditor5-upload/docs/api/upload.md b/packages/ckeditor5-upload/docs/api/upload.md index 7b72157e656..0711918e8e6 100644 --- a/packages/ckeditor5-upload/docs/api/upload.md +++ b/packages/ckeditor5-upload/docs/api/upload.md @@ -27,7 +27,7 @@ npm install --save @ckeditor/ckeditor5-upload ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-upload. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-upload](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-upload). ## External links diff --git a/packages/ckeditor5-upload/docs/features/base64-upload-adapter.md b/packages/ckeditor5-upload/docs/features/base64-upload-adapter.md index ec2107e5ed2..8a64b3f15ba 100644 --- a/packages/ckeditor5-upload/docs/features/base64-upload-adapter.md +++ b/packages/ckeditor5-upload/docs/features/base64-upload-adapter.md @@ -79,4 +79,4 @@ See the {@link features/images-overview Image feature guide} to find out more ab ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-upload. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-upload](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-upload). diff --git a/packages/ckeditor5-upload/docs/features/simple-upload-adapter.md b/packages/ckeditor5-upload/docs/features/simple-upload-adapter.md index 92433348a69..610cfa9f8f5 100644 --- a/packages/ckeditor5-upload/docs/features/simple-upload-adapter.md +++ b/packages/ckeditor5-upload/docs/features/simple-upload-adapter.md @@ -163,4 +163,4 @@ See the {@link features/images-overview Image feature guide} to find out more ab ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-upload. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-upload](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-upload). diff --git a/packages/ckeditor5-utils/docs/api/utils.md b/packages/ckeditor5-utils/docs/api/utils.md index 441d5700dd1..d65d137e3da 100644 --- a/packages/ckeditor5-utils/docs/api/utils.md +++ b/packages/ckeditor5-utils/docs/api/utils.md @@ -20,7 +20,7 @@ npm install --save @ckeditor/ckeditor5-utils ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-utils. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-utils](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-utils). ## External links diff --git a/packages/ckeditor5-watchdog/docs/api/watchdog.md b/packages/ckeditor5-watchdog/docs/api/watchdog.md index cd5b3c2ed9d..27ae3e94a0f 100644 --- a/packages/ckeditor5-watchdog/docs/api/watchdog.md +++ b/packages/ckeditor5-watchdog/docs/api/watchdog.md @@ -20,7 +20,7 @@ npm install --save @ckeditor/ckeditor5-watchdog ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-watchdog. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-watchdog](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-watchdog). ## External links diff --git a/packages/ckeditor5-widget/docs/api/widget.md b/packages/ckeditor5-widget/docs/api/widget.md index 89e52de208b..7ec585d200a 100644 --- a/packages/ckeditor5-widget/docs/api/widget.md +++ b/packages/ckeditor5-widget/docs/api/widget.md @@ -36,7 +36,7 @@ npm install --save @ckeditor/ckeditor5-widget ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-widget. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-widget](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-widget). ## External links diff --git a/packages/ckeditor5-word-count/docs/api/word-count.md b/packages/ckeditor5-word-count/docs/api/word-count.md index db3d1bfd7a2..e15cae775d4 100644 --- a/packages/ckeditor5-word-count/docs/api/word-count.md +++ b/packages/ckeditor5-word-count/docs/api/word-count.md @@ -24,7 +24,7 @@ npm install --save @ckeditor/ckeditor5-word-count ## Contribute -The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-word-count. +The source code of this package is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-word-count](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-word-count). ## External links diff --git a/packages/ckeditor5-word-count/docs/features/word-count.md b/packages/ckeditor5-word-count/docs/features/word-count.md index 03d70ea7345..d7ae675b363 100644 --- a/packages/ckeditor5-word-count/docs/features/word-count.md +++ b/packages/ckeditor5-word-count/docs/features/word-count.md @@ -294,4 +294,4 @@ The {@link module:word-count/wordcount~WordCount} plugin provides: ## Contribute -The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-word-count. +The source code of the feature is available on GitHub in [https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-word-count](https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-word-count).