如何从CKeditor中删除空标签

时间:2015-09-16 10:01:28

标签: ckeditor

如何从CKeditor中删除空标签?我试过了:

Regex.Replace(clean, "(<[/a-zA-Z]+?)([^>]*?)(>)", "$1$3");

Regex.Replace(input, @"<([^>/][^>]*)>((&nbsp;)*|\s*)</\1>", String.Empty);

config.allowedContent = true;

config.removeFormatAttributes = '';

在ckeditor的config.js中,但它不起作用。

1 个答案:

答案 0 :(得分:0)

听起来像这个问题类似:CKEditor strips <i> Tag

应该可以定义标签是否允许为空:

// allow i tags to be empty (for font awesome)
CKEDITOR.dtd.$removeEmpty['i'] = false

如果你允许每个标签禁止它,它们应该被删除。

我只玩过&#39; i&#39;标签案例过去。但我相信它也适用于所有其他标签。