如何用Moustache创建活动链接?

时间:2014-02-25 15:39:02

标签: javascript html templates hyperlink mustache

如何使用Mustache创建活动的可点击链接? 我更喜欢使用javascript版本的Mustache。

换句话说:

我想用javascript / mustache(= linkify)自动链接用户生成的文本内容。

模板

{{#.}}
    <div>{{.}}</div>
{{/.}}

数据

[
    'User content, like regular text.',
    'User content with text and links http://www.google.com or secure https://www.google.com'
]

输出我正在寻找

<div>User content, like regular text.</div>
<div>User content with text and links <a href="http://www.google.com">http://www.google.com</a> or secure <a href="https://www.google.com">https://www.google.com</a></div>

1 个答案:

答案 0 :(得分:1)

使用{{{。}}}代替{{。}} - 这不会转义特殊字符。