我是joomla的新手,当前使用的是Joomla 3.6版.有没有一种方法可以将tinymce编辑器设置为使用div标记而不是段落作为默认标记?任何答案将不胜感激,非常感谢.
解决方法:
如果我正确理解了documentation,则必须使用force-root-block:’div’来初始化tinymce.
tinymce.init({
// ...
forced_root_block : 'div'
});
If you set this option to false it will never produce p tags on enter, or, automatically it will instead produce br elements and Shift+Enter will produce a p.