From b13330319c33528a737cf2f4fdebce02f439c4be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotrek=20Koszuli=C5=84ski?= Date: Wed, 16 Oct 2019 13:55:06 +0200 Subject: [PATCH] Docs: Added indent/outdent buttons. See ckeditor/ckeditor5#1844. --- docs/_snippets/features/markdown.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/docs/_snippets/features/markdown.js b/docs/_snippets/features/markdown.js index 5e1af0e..4fe0c10 100644 --- a/docs/_snippets/features/markdown.js +++ b/docs/_snippets/features/markdown.js @@ -20,7 +20,22 @@ function Markdown( editor ) { ClassicEditor .create( document.querySelector( '#snippet-markdown' ), { plugins: [ ArticlePluginSet, EasyImage, Markdown ], - toolbar: [ 'heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ], + toolbar: [ + 'heading', + '|', + 'bold', + 'italic', + 'link', + 'bulletedList', + 'numberedList', + '|', + 'outdent', + 'indent', + '|', + 'blockQuote', + 'undo', + 'redo' + ], image: { toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ] },