ckeditor 的 HTML 源代码缩进
当您在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是开发人员指南中页面的链接:
输出格式
它解释了如何控制输出的 HTML 代码的布局编辑器并有一个设置
标记格式的示例。
尝试使用
标记示例作为模板,并设置
、
和 < code> 标签使用相同的方法。
祝你好运,
乔
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.Be Well,
Joe