我在哈巴狗文件中具有以下链接:
a.button.expanded(href=`${projects[id].live_link}`) Live Demo
a.button.expanded(href=`${projects[id].github_link}`) GitHub Repo
我正在尝试这样添加target = _blank“
a.button.expanded(href=`${projects[id].live_link}target="_blank"`) Live Demo
但这似乎不起作用,有人可以帮忙吗?
答案 0 :(得分:2)
您需要添加,
来分隔属性
标记属性看起来类似于HTML(带有可选的逗号),但是它们的值只是常规JavaScript。
Doc:Pug - Attributes
所以
a.button.expanded(href=`${projects[id].live_link}`, target="_blank") Live Demo