TinyMCE:Configuration/forced root block
From Moxiecode Documentation Wiki
[edit]
Option: forced_root_block
(Requires: 2.1.1)
This option enables you to make sure that any non block elements or text nodes are wrapped in block elements. For example <strong>something</strong> will result in output like: <p><strong>something</strong></p>. This option is set to false by default so set it to the block element you want to use as root elements.
This option is enabled by default as of 3.0a1.
[edit]
Example of usage of the forced_root_block option:
tinyMCE.init({
...
forced_root_block : 'p'
});
