【发布时间】:2014-02-25 15:39:02
【问题描述】:
如何使用 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>
【问题讨论】:
标签: javascript html templates hyperlink mustache