ckeditor 的 HTML 源代码缩进

发布于 2024-12-06 02:16:11 字数 638 浏览 1 评论 0原文

当您在 HTML 视图中向 ckeditor 添加一些代码,然后更改为 WYSIWYG 视图并返回时,几乎所有 HTML 标记都已被修改并失去了缩进。有什么办法可以防止这种行为吗? (参数、插件、硬代码...)

例如:

<div class="former input">
    <span class="big horizontal">
        <label for="test">Hi world</label>
        <input class="medium free" id="test" name="test" type="text" />
    </span>
</div>

变为:

<div class="former input">
    <span class="big horizontal"><label for="test">Hi world</label><input class="medium free" id="test" name="test" type="text" /></span></div>

When you add some code to a ckeditor in HTML view and then change to WYSIWYG view and come back, almost all HTML tags have been modified and have loose the indentation. Is there any way to prevent this behaviour? (parameter, plugin, hard code...)

For example:

<div class="former input">
    <span class="big horizontal">
        <label for="test">Hi world</label>
        <input class="medium free" id="test" name="test" type="text" />
    </span>
</div>

Becomes:

<div class="former input">
    <span class="big horizontal"><label for="test">Hi world</label><input class="medium free" id="test" name="test" type="text" /></span></div>

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

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

发布评论

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

评论(1

深海夜未眠 2024-12-13 02:16:11

以下是开发人员指南中页面的链接:
输出格式

它解释了如何控制输出的 HTML 代码的布局编辑器并有一个设置

标记格式的示例。

尝试使用

标记示例作为模板,并设置 和 < code> 标签使用相同的方法。

writer.setRules( 'span',
writer.setRules( 'label',
writer.setRules( 'input',

祝你好运,

Here's a link to a page in the developer's guide:
Output Formatting

It explains how to control the layout of the HTML code that is output by the editor and has an example that sets the formatting for the <p> tag.

Try using the <p> tag example as a template and set the formatting for the <span>, <label> and <input> tags using the same approach.

writer.setRules( 'span',
writer.setRules( 'label',
writer.setRules( 'input',

Be Well,
Joe

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