TinyMCE 禁用转义

发布于 2024-09-08 12:22:01 字数 522 浏览 3 评论 0原文

我正在使用tinyMCE 编辑现有网站的内容。该网站的链接格式如下:

http://localhost/start.jsp%3Fparam=value

其中 %3F 是问号字符的转义字符串。当 TinyMCE 编辑包含这些链接之一的页面时,它会将“%”符号转换为“%25”,从而破坏链接。

如何禁用tinyMCE 的百分号转义?

我有以下配置集:

tinyMCE.init({
     mode: "specific_textareas",
     editor_encoding: "raw",
     editor_selector: "tinyMCE",
     relative_urls : false,
     convert_urls : false
}

注意:我使用 setContent 来填充tinyMCE编辑器的初始值。

I'm using tinyMCE to edit content from an existing website. This website has links in the format:

http://localhost/start.jsp%3Fparam=value

where the %3F is the escaped string for the question mark character. When TinyMCE edits a page containing one of these links, it converts the "%" sign into "%25" which breaks the link.

How can I disable tinyMCE's escaping of percent signs?

I have the following configuration set:

tinyMCE.init({
     mode: "specific_textareas",
     editor_encoding: "raw",
     editor_selector: "tinyMCE",
     relative_urls : false,
     convert_urls : false
}

Note: I am using setContent to populate the initial value of the tinyMCE editor.

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

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

发布评论

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

评论(1

定格我的天空 2024-09-15 12:22:01

应该是:

entity_encoding: "raw"

而不是:

editor_encoding: "raw"

请参阅 http://tinymce.moxiecode.com/wiki.php/Configuration< /a>

Should be:

entity_encoding: "raw"

instead of:

editor_encoding: "raw"

See http://tinymce.moxiecode.com/wiki.php/Configuration

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