如何阻止 HtmlTidy 转换变音符号(例如 ü 到 ü)

发布于 2024-08-24 20:42:23 字数 133 浏览 3 评论 0 原文

我们的网站通过 HtmlTidy 运行用户的输入来清理它。显然,在这样做的同时,它也会因转换元音而给我们的国际订户带来痛苦。是否有任何选项可以指定 HtmlTidy 不这样做?

我尝试使用所有可能的选项进行字符编码,但似乎没有任何效果。

Our website runs the user's input via HtmlTidy to clean it. Apparently while doing this it also causes pain for our international subscribers by converting umlauts. Is there any option to specify for HtmlTidy to not do this?

I tried CharacterEncoding with all possible options but nothing seems to be working.

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

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

发布评论

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

评论(1

清晰传感 2024-08-31 20:42:23

只需在配置文件中提供输出编码(输入编码是可选的):

input-encoding: win1252
output-encoding: latin1

有关可用编码的概述,请查看 输出编码文档

编辑:所以您正在使用 .NET 绑定。这是完全相同的设置:

Document d = new Document(new FileStream("in.html", FileMode.Open));

d.InputCharacterEncoding = EncodingType.Utf8;
d.OutputCharacterEncoding = EncodingType.Win1252;
d.CleanAndRepair();

d.Save("out.html");

设置正确的编码后,您将获得正确的结果,而无需 ü 等。

Simply provide an output encoding (input encoding is optional) in the configuration file:

input-encoding: win1252
output-encoding: latin1

For an overview of available encodings, look at the output-encoding documentation.

EDIT: So you're using the .NET bindings. It's the very same settings:

Document d = new Document(new FileStream("in.html", FileMode.Open));

d.InputCharacterEncoding = EncodingType.Utf8;
d.OutputCharacterEncoding = EncodingType.Win1252;
d.CleanAndRepair();

d.Save("out.html");

With the correct encodings set, you will get the correct result, without ü and the like.

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