Default configuration

Uses the default toolbar and built-in plugin setup, with no additional plugin customization.

This editor was created with no configuration at all — every toolbar button, plugin and keyboard shortcut you see is a default.

Try the toolbar: formatting, tables, images, links, find & replace, and the paragraph menu on the right.

Example code

<!--Include the JS & CSS-->
<link rel="stylesheet" href="/richtexteditor/rte_theme_default.css" />
<script type="text/javascript" src="/richtexteditor/rte.js"></script>
<script type="text/javascript" src='/richtexteditor/plugins/all_plugins.js'></script>

<div id="div_editor1">
    <p>Your starting content.</p>
</div>

<script>
    // No second argument: everything falls back to RTE_DefaultConfig.
    var editor1 = new RichTextEditor("#div_editor1");
</script>

Every default lives in RTE_DefaultConfig in rte.js. Override any of them by passing a second argument, or globally by assigning to RTE_DefaultConfig before constructing an editor.

Configuration reference