Difference between revisions of "WYSIWYG"
Jump to navigation
Jump to search
Line 42: | Line 42: | ||
== Code Mirror == | == Code Mirror == | ||
* [http://codemirror.net/ CodeMirror] is a JavaScript component that provides a code editor in the browser. When a mode is available for the language you are coding in, it will color your code, and optionally help with indentation. A rich programming API and a CSS theming system are available for customizing CodeMirror to fit your application, and extending it with new functionality. | * [http://codemirror.net/ CodeMirror] is a JavaScript component that provides a code editor in the browser. When a mode is available for the language you are coding in, it will color your code, and optionally help with indentation. A rich programming API and a CSS theming system are available for customizing CodeMirror to fit your application, and extending it with new functionality. | ||
− | |||
** http://www.octolabs.com/javascripts/codemirror-ui/ | ** http://www.octolabs.com/javascripts/codemirror-ui/ | ||
+ | |||
+ | * http://drupal.org/node/274431 | ||
== vi/vim == | == vi/vim == | ||
* [http://drupal.org/node/295014 Add support for vi.js] | * [http://drupal.org/node/295014 Add support for vi.js] |
Revision as of 01:27, 13 March 2013
TinyMCE
- http://www.tinymce.com
- https://github.com/tinymce/tinymce/downloads
- http://www.tinymce.com/wiki.php
- http://www.tinymce.com/wiki.php/Creating_a_skin
- http://superdit.com/2011/12/02/customizing-tinymce-css-skin/
- http://www.scriptalicious.com/blog/2009/03/creating-a-new-tinymce-theme-for-3x/
- http://www.cirkuit.net/projects/tinymce/cirkuitSkin/
- http://ccideas.com/howto/drupal-7-wysiwyg-tinymce-is-ugly/ - wysiwyg tinymce.inc has hardcoded
ckEditor
markItUp
Redactor
Aloha Editor
wysihtml5
- wysihtml5 is an open source rich text editor based on HTML5 technology and the progressive-enhancement approach. It uses a sophisticated security concept and aims to generate fully valid HTML5 markup by preventing unmaintainable tag soups and inline styles. The code is completely library agnostic: No jQuery, Prototype or similar is required.
Code Mirror
- CodeMirror is a JavaScript component that provides a code editor in the browser. When a mode is available for the language you are coding in, it will color your code, and optionally help with indentation. A rich programming API and a CSS theming system are available for customizing CodeMirror to fit your application, and extending it with new functionality.