PHP-使用div标签作为默认标签,而不是tinymce中的段落

我是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.

上一篇:javascript – 在Tiny MCE自定义按钮中使用现有图标


下一篇:javascript – TinyMCE onPaste没有设置内容,粘贴上下文菜单不会触发更改事件