TinyMCE 不会在粘贴时自动将 URL 转换为链接
当我将 URL 粘贴到 TinyMCE 编辑器中时,它会将文本转换为链接。
所以 http://vimeo.com/18150336
将会是 http://vimeo.com/18150336< ;/a>
。我想保留纯文本。他们是配置 TinyMCE 以将链接保持为纯文本的一种方法吗?
我不想删除标签,因为添加超链接应该是工具栏上的一个选项。默认情况下它不应该发生。
When I paste a URL into a TinyMCE editor it converts the text into a link.
So http://vimeo.com/18150336
would be come <a href="http://vimeo.com/18150336">http://vimeo.com/18150336</a>
. I would like to keep the plain text. Is their a way to configure TinyMCE to keep the link as plain text.
I do not want to strip out tags as adding a hyperlinks should be an option on the toolbar. It should just not happen by default.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 粘贴插件 和设置
paste_preprocessing
以保留纯文本。您可能需要检查使用paste_preprocessing
指定的函数内部是否有链接。You can use the paste plugin and the setting
paste_preprocessing
in order to keep the plain text. You might need to check inside the function specified usingpaste_preprocessing
if you got a link or not.已经过去 5 年了,所以我可能正在使用较新版本的 TinyMCE,无论如何这个解决方案对我有用,只需添加这个选项:
所以当你初始化tinymce时,它应该是这样的:
这是 TinyMCE V4 的文档页面
It's been 5 years, So I'm probably using a newer version of TinyMCE, anyway this solution worked for me, Just add this option:
So when you initialize the tinymce, it should be something like this:
This is the page of documentation for TinyMCE V4
TinyMCE 插件
autolink
负责在粘贴时自动创建链接。 (并写)。https://www.tiny.cloud/docs/plugins/opensource/autolink/< /a>
It is the TinyMCE plugin
autolink
which is responsible for automatically creating links on paste. (And write).https://www.tiny.cloud/docs/plugins/opensource/autolink/