使用 CKeditor 的 EnterMode 插入额外空格 - 导致 XML 文档出现问题

发布于 2024-10-21 16:05:20 字数 639 浏览 5 评论 0原文

我在网站的 CMS 中使用 CKEditor,它会生成一个包含 CDATA 内容的 XML 文件以供 Flash 读取。问题是,当 CKEditor 的 EnterMode 设置为

标签时,它会在源代码中创建一个换行符和一个制表符,当由 flash 读取时,它会输入空格,即使我已经ignoreWhiteSpace设置为 true。有什么办法可以阻止 ckeditor 使用这种行为吗?

编辑:

我仍然想保留任何

从编辑器中输入的标签 - 我只是不希望在实际源中添加所有额外的空间/选项卡。如果我使用上面的方法,我的实际代码将会被修改。如果我查看源代码,我得到的是这样的:(

<p> 
    Donec at erat nec tortor sodales tempus.</p> 

一个回车键,以及第一个

标记后的一个制表符或一堆空格,而不是:(

<p>Donec at erat nec tortor sodales tempus.</p> 

源代码中的

标记后没有空格或中断)我相信这会影响 XML 的呈现。这是否有助于澄清?

I am using CKEditor in my website's CMS, which spits out an XML file of CDATA enclosed content to be read by flash. The problem is that CKEditor, when its enterMode is set to <p> tags, creates a line break and a tab in the source which, when read by flash, enters space, even though I have ignoreWhiteSpace set to true. Any way to prevent ckeditor from using this behavior?

EDIT:

I still want to keep any <p> tags entered from within the editor - I just don't want all the extra space / tabs that get added in the actual source. If I use the above method, my actual code will be modified. What I'm getting if I view the source is this:

<p> 
    Donec at erat nec tortor sodales tempus.</p> 

(an enter, and either a tab or a bunch of space after first <p> tag, instead of:

<p>Donec at erat nec tortor sodales tempus.</p> 

(no spaces or breaks after <p> tag in source and I believe this is affecting the presentation of the XML. Does this help clarify at all?

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

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

发布评论

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

评论(2

梦途 2024-10-28 16:05:20

您应该测试“Flash 输出”示例,这里有一个小片段,仅更改您要求的部分,但其余的调整应该对您有用:

// Make output formatting match Flash expectations
var dtd = CKEDITOR.dtd;
for ( var e in CKEDITOR.tools.extend( {}, dtd.$nonBodyContent, dtd.$block, dtd.$listItem, dtd.$tableContent ) )
{
    dataProcessor.writer.setRules( e,
        {
            indent : false,
            breakBeforeOpen : false,
            breakAfterOpen : false,
            breakBeforeClose : false,
            breakAfterClose : false
        });
}
dataProcessor.writer.setRules( 'br',
    {
        indent : false,
        breakBeforeOpen : false,
        breakAfterOpen : false,
        breakBeforeClose : false,
        breakAfterClose : false
    });

You should test the "output for Flash" sample, here's a little snippet that changes just the part that you are asking, but the rest of the adjustments should be useful for you:

// Make output formatting match Flash expectations
var dtd = CKEDITOR.dtd;
for ( var e in CKEDITOR.tools.extend( {}, dtd.$nonBodyContent, dtd.$block, dtd.$listItem, dtd.$tableContent ) )
{
    dataProcessor.writer.setRules( e,
        {
            indent : false,
            breakBeforeOpen : false,
            breakAfterOpen : false,
            breakBeforeClose : false,
            breakAfterClose : false
        });
}
dataProcessor.writer.setRules( 'br',
    {
        indent : false,
        breakBeforeOpen : false,
        breakAfterOpen : false,
        breakBeforeClose : false,
        breakAfterClose : false
    });
北城挽邺 2024-10-28 16:05:20

我实际上在 Flash 端解决了这个问题,通过使用

TextField.condenseWhite = true;

and

XML.ignoreWhite = true;

这并没有改变 CKEditor 吐出内容的方式,但它确实解决了 flash 如何显示它的问题。

I actually solved this on the Flash end, by using

TextField.condenseWhite = true;

and

XML.ignoreWhite = true;

Which doesn't change how CKEditor spits stuff out, but it does solve the problem of how flash displays it.

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