From 6fcfb7c04d32e1c8b26a312295bf7ac3ec2d2ad7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 13 Jul 2018 19:06:45 +0200 Subject: Fixed many permissions and began admin interface --- .../ckeditor/samples/old/bbcode/bbcode.html | 114 +++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 public/bower_components/ckeditor/samples/old/bbcode/bbcode.html (limited to 'public/bower_components/ckeditor/samples/old/bbcode/bbcode.html') diff --git a/public/bower_components/ckeditor/samples/old/bbcode/bbcode.html b/public/bower_components/ckeditor/samples/old/bbcode/bbcode.html new file mode 100644 index 0000000..e5bbe1c --- /dev/null +++ b/public/bower_components/ckeditor/samples/old/bbcode/bbcode.html @@ -0,0 +1,114 @@ + + + +
+ ++ This sample shows how to configure CKEditor to output BBCode format instead of HTML. + Please note that the editor configuration was modified to reflect what is needed in a BBCode editing environment. + Smiley images, for example, were stripped to the emoticons that are commonly used in some BBCode dialects. +
++ Please note that currently there is no standard for the BBCode markup language, so its implementation + for different platforms (message boards, blogs etc.) can vary. This means that before using CKEditor to + output BBCode you may need to adjust the implementation to your own environment. +
++ A snippet of the configuration code can be seen below; check the source of this page for + a full definition: +
++CKEDITOR.replace( 'editor1', { + extraPlugins: 'bbcode', + toolbar: [ + [ 'Source', '-', 'Save', 'NewPage', '-', 'Undo', 'Redo' ], + [ 'Find', 'Replace', '-', 'SelectAll', 'RemoveFormat' ], + [ 'Link', 'Unlink', 'Image' ], + '/', + [ 'FontSize', 'Bold', 'Italic', 'Underline' ], + [ 'NumberedList', 'BulletedList', '-', 'Blockquote' ], + [ 'TextColor', '-', 'Smiley', 'SpecialChar', '-', 'Maximize' ] + ], + ... some other configurations omitted here +});+