5

我正在尝试使用以下内容在 Hoplon 中呈现 HTML 实体:

(a :href "#" :class "deck-prev-link" :title "Previous" "←")

但它不是箭头,而是←在呈现的页面中显示文字。

我错过了什么?

4

1 回答 1

6

因此,如果有人想知道,答案是将“←”直接粘贴到字符串中,如下所示:

(a :href "#" :class "deck-prev-link" :title "Previous" "←")

或者像这样在字符串中使用 unicode 转义:

(a :href "#" :class "deck-prev-link" :title "Previous" "\u2190")

我在这里找到了左箭头的 unicode 十进制代码点:List of XML and HTML Character Entity References

于 2014-01-21T03:38:35.197 回答