Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Editors: Difference between revisions

From MoodleDocs
m (first editing)
mNo edit summary
Line 13: Line 13:
==TinyMCE==
==TinyMCE==


TinyMCE is an platform-independent web-based JavaScript/HTML WYSIWY editor control, used as the main Moodle editor plugin.
TinyMCE is an platform-independent web-based JavaScript/HTML WYSIWYG editor control, used as the main Moodle editor plugin.


===Augmenting TinyMCE===
===Augmenting TinyMCE===

Revision as of 14:54, 21 July 2013

Overview

It's possible to add new editors to Moodle and replace or augment TinyMCE.

Add a new Editor to Moodle

The editor is a plugin used by Moodle that we can find in the Moodle source files folowing the path /lib/editor/

Moodle tipically uses the TinyMCE editor, but other editors can be installed in Moodle.

We can find other editors that can be installed in Moodle.

TinyMCE

TinyMCE is an platform-independent web-based JavaScript/HTML WYSIWYG editor control, used as the main Moodle editor plugin.

Augmenting TinyMCE

Specific Moodle TinyMCE plugins can be created in order to augment TinyMCE functionalities.

Here you will find some tips of how to create your own button, a Moodle specific TinyMCE plugin.



TODO: Finish this page.