This repository has been archived by the owner on May 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathREADME
49 lines (28 loc) · 1.82 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
NOTE: I'm no longer maintaining this anymore, if someone wishes to take over then please contact me.
SyntaxHL is a plugin for the Tinymce (http://tinymce.moxiecode.com/) javascript WYSIWYG editor allowing you to insert highlighted code into the editor. The syntax highlighting is done using Syntax Highligher (http://code.google.com/p/syntaxhighlighter/) and the plugin simply produces the right syntax for this.
== Installation
= Move to plugin directory
Copy the syntaxhl folder into the Tinymce plugin directory so the path is something like this:
/path/to/tinymce/plugins/syntaxhl
= Configure Tinymce
In your HTML under the tinymce.init option you need to append or add the line to load the plugin. You also need to add the button 'syntaxhl' to one of the button lines.
Example configuration:
tinyMCE.init({
theme : "advanced",
plugins : "syntaxhl",
theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,styleselect,removeformat,cleanup,code, syntaxhl",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
remove_linebreaks : false,
extended_valid_elements : "textarea[cols|rows|disabled|name|readonly|class]"
});
That should be all you need to get the plugin working. Open up the editor and check the button has appeared (looks like a highlighter pen).
================================================================================
Please feel free to modify the project and send pull requests with improvements, changes are welcome!
If you have any problems at all contact me and I'll do the best I can to help.
http://27smiles.com
================================================================================
== License
Copyright (c) 2008 Richard Grundy.
TinyMCE is released under the LGPL and therefore so is this plugin.
http://www.opensource.org/licenses/lgpl-license.php