编程语言
首页 > 编程语言> > PHP-使用div标签作为默认标签,而不是tinymce中的段落

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.

标签:joomla3-0,tinymce,css,html,php
来源: https://codeday.me/bug/20191026/1936482.html