Browse Source

Docs: Minor improvements.

Piotrek Koszuliński 8 years ago
parent
commit
3cab971777

+ 8 - 0
docs/builds/guides/integration/configuration.md

@@ -86,6 +86,14 @@ ClassicEditor
 	The above is a strict UI-related configuration. Removing a toolbar item does not remove the feature from the editor internals. If your goal with the toolbar configuration is to remove features, the right solution is to also remove their relative plugins. Check [Removing features](#Removing-features) above for more information.
 </info-box>
 
+### Listing available items
+
+You can use the following snippet to retrieve all toolbar items available in your editor:
+
+```js
+Array.from( editor.ui.componentFactory.names );
+```
+
 ## Other configuration options
 
 See {@link module:core/editor/editorconfig~EditorConfig} to learn about all available configuration options.

+ 1 - 1
docs/framework/guides/contributing/git-commit-message-convention.md

@@ -3,7 +3,7 @@ category: framework-contributing
 order: 30
 ---
 
-## Git commit message convention
+# Git commit message convention
 
 Every commit made *directly* to the `master` branch must follow the below convention. Based on commits in the `master` branch CKEditor 5's release tools will generate changelog entries for the current release.