我如何强制 Tinymce 将所有内容包装在段落内?

发布于 2024-10-13 14:54:15 字数 352 浏览 6 评论 0原文

我使用 forced_root_block: 'p', 初始化tinymce(这通常工作正常)。 我面临的问题似乎是一个特殊情况。 我使用火狐浏览器。 当我按 ctrl+a 并标记所有内容时,按一个字母(例如“d”),使用 firbug 进行更仔细的检查显示,

<body ...>d</body>

如果我按第二个字母,编辑器内容将被包装到一个段落中。

我需要使用 css 和段落来设置编辑器内容的样式,但是当没有段落时,我无法设置内容的样式,用户可能会感到恼火。 我该如何解决这个问题?

I initialize tinymce using forced_root_block: 'p', (this usually works fine).
The problem i am facing seems to be a special case. I use Firefox.
When i press ctrl+a and when all contetn is marked press one single letter (in example 'd') a closer inspection using firbug shows

<body ...>d</body>

If i push a second letter the editors content gets wrapped into a paragraph.

I need to style the editors content using css and paragraphs, but when there is no paragraph i am not able to style the content and the user could get irritated.
How can i solve this issue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花间憩 2024-10-20 14:54:15

将其添加到您的tinymce配置中:

forced_root_block : "p",
force_br_newlines : false,
force_p_newlines : true,

Add this to your tinymce config:

forced_root_block : "p",
force_br_newlines : false,
force_p_newlines : true,
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文