VBscript 中 HTML 内容的单词拼写检查
我使用 CKEditor 作为我的所见即所得编辑器。据我所知,它附带了一些拼写检查插件。然而 - 我们选择单词作为拼写检查引擎。当我们尝试进行拼写检查时,Word 在 HTML 标记上显示警告。如果我们删除 HTML 标签,就会丢失格式。已经变成非此即彼了。任何人都可以建议 - 我们如何从 Word 拼写检查器中跳过 HTML 标签。
I am using CKEditor as my WYSIWYG editor. I understand that it comes with some of spellchecking plugins. However - we choose word as the spell check engine. When We try to do the spell check, Word shows warnings on the HTML tags. If we remove the HTML tags, we loose the formatting. It has become either or. Can anyone suggest - how we can get HTML tags skipped from Word spell checker.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了完成这个线程,我使用了正则表达式来消除 HTML 标签。在调用 Spellcheck method() 之前 - 我将消除所有 HTML 标记,然后将字符串传递给拼写检查。它适用于我的场景。
To complete this thread, I used a Regular Expression to get the HTML tags out of the way. Before calling the Spellcheck method() - I will eliminate all the HTML tags and then pass the string to spell check. It worked for my scenario.