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 --- .../samples/old/codesnippet/codesnippet.html | 236 +++++++++++++++++++++ 1 file changed, 236 insertions(+) create mode 100644 public/bower_components/ckeditor/samples/old/codesnippet/codesnippet.html (limited to 'public/bower_components/ckeditor/samples/old/codesnippet/codesnippet.html') diff --git a/public/bower_components/ckeditor/samples/old/codesnippet/codesnippet.html b/public/bower_components/ckeditor/samples/old/codesnippet/codesnippet.html new file mode 100644 index 0000000..46e1e4c --- /dev/null +++ b/public/bower_components/ckeditor/samples/old/codesnippet/codesnippet.html @@ -0,0 +1,236 @@ + + + +
+ +
+ This editor is using the Code Snippet plugin which introduces beautiful code snippets.
+ By default the codesnippet
plugin depends on the built-in client-side syntax highlighting
+ library highlight.js.
+
+ You can adjust the appearance of code snippets using the codeSnippet_theme
configuration variable
+ (see available themes).
+
+ Select theme: +
++ The CKEditor instance below was created by using the following configuration settings: +
+ ++CKEDITOR.replace( 'editor1', { + extraPlugins: 'codesnippet', + codeSnippet_theme: 'monokai_sublime' +} ); ++ +
+ Please note that this plugin is not compatible with Internet Explorer 8. +
++ The following sample shows the Code Snippet plugin running inside + an inline CKEditor instance. The CKEditor instance below was created by using the following configuration settings: +
+ ++CKEDITOR.inline( 'editable', { + extraPlugins: 'codesnippet' +} ); ++ +
+ Note: The highlight.js themes
+ must be loaded manually to be applied inside an inline editor instance, as the
+ codeSnippet_theme
setting will not work in that case.
+ You need to include the stylesheet in the <head>
section of the page, for example:
+
+<head> + ... + <link href="path/to/highlight.js/styles/monokai_sublime.css" rel="stylesheet"> +</head> ++ +
JavaScript code:
+ +function isEmpty( object ) {
+ for ( var i in object ) {
+ if ( object.hasOwnProperty( i ) )
+ return false;
+ }
+ return true;
+}
+
+SQL query:
+ +SELECT cust.id, cust.name, loc.city FROM cust LEFT JOIN loc ON ( cust.loc_id = loc.id ) WHERE cust.type IN ( 1, 2 );
+
+Unknown markup:
+ + ________________
+/ \
+| How about moo? | ^__^
+\________________/ (oo)\_______
+ \ (__)\ )\/\
+ ||----w |
+ || ||
+
+ + The Code Snippet GeSHi plugin is an + extension of the Code Snippet plugin which uses a server-side highligter. +
+ +
+ It also is possible to replace the default highlighter with any library using
+ the Highlighter API
+ and the editor.plugins.codesnippet.setHighlighter()
method.
+