Skip to content

Commit

Permalink
Wrapped urls in markdown syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
przemyslaw-zan committed Dec 23, 2022
1 parent 2386574 commit e456f6e
Show file tree
Hide file tree
Showing 110 changed files with 114 additions and 116 deletions.
2 changes: 1 addition & 1 deletion docs/framework/guides/architecture/editing-engine.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
</info-box>

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).

<info-box>
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`.
Expand Down
2 changes: 1 addition & 1 deletion docs/framework/guides/contributing/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/framework/guides/contributing/testing-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ The `yarn run manual` task accepts the following options:
* `--dll` &ndash; 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` &ndash; 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

Expand Down
2 changes: 1 addition & 1 deletion docs/framework/guides/development-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions docs/installation/frameworks/angular.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
4 changes: 2 additions & 2 deletions docs/installation/frameworks/react.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<info-box>
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/).
</info-box>

Create a sample application using `create-react-app@3+` first:
Expand Down Expand Up @@ -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).
2 changes: 1 addition & 1 deletion docs/installation/frameworks/vuejs-v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
2 changes: 1 addition & 1 deletion docs/installation/frameworks/vuejs-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
2 changes: 1 addition & 1 deletion docs/installation/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-alignment/docs/api/alignment.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,4 @@ Block elements such as `<p>` 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).
2 changes: 1 addition & 1 deletion packages/ckeditor5-autoformat/docs/api/autoformat.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-autoformat/docs/features/autoformat.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
2 changes: 1 addition & 1 deletion packages/ckeditor5-autosave/docs/api/autosave.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-basic-styles/docs/api/basic-styles.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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).
2 changes: 1 addition & 1 deletion packages/ckeditor5-block-quote/docs/api/block-quote.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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).
2 changes: 1 addition & 1 deletion packages/ckeditor5-ckbox/docs/api/ckbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 1 addition & 2 deletions packages/ckeditor5-ckbox/docs/features/ckbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
2 changes: 1 addition & 1 deletion packages/ckeditor5-ckfinder/docs/api/ckfinder.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 1 addition & 2 deletions packages/ckeditor5-ckfinder/docs/features/ckfinder.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
2 changes: 1 addition & 1 deletion packages/ckeditor5-clipboard/docs/api/clipboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-code-block/docs/api/code-block.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-code-block/docs/features/code-blocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
2 changes: 1 addition & 1 deletion packages/ckeditor5-core/docs/api/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-easy-image/docs/api/easy-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-easy-image/docs/features/easy-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-editor-inline/docs/api/editor-inline.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-engine/docs/api/engine.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading

0 comments on commit e456f6e

Please sign in to comment.