Elm - 不要转义 html 字符串

Elm - do not escape html string

ELM 的文档 Html 明确指出

It will escape the string so that it appears exactly as you specify

如果我想转义字符串,我该怎么办?

例如,假设我有字符串 "“",如何将其呈现为

绕过该限制的唯一方法是使用 unicode 字符而不是转义。也就是说,您呈现的 HTML 实际上将包含 unicode 而不是 “

的 html 转义值

See this related discussion.

我最近创建了一个 Elm package 来解决这个问题。如果您使用 text' "“",它将呈现“而不是转义码。也适用于 "“""“" 和十六进制实体 "“"。从 API 获取时应该可以工作。希望这对您有所帮助!