玉/帕格img和文字链接

时间:2018-06-04 09:46:13

标签: html pug

我想做这样的事情:

<a href="tel:+380631234567">
    <img src="somePath" alt="">
    + 380631234567
</a>

这显然不起作用,因为img是自闭标签:

a(href="tel:+380681234567"): img(src="somePath") +38 (068) 12 34 567

是否可以使用Jade / Pug进行此操作?

1 个答案:

答案 0 :(得分:2)

根据此应用https://html2pug.herokuapp.com/,你可以这样做:

a(href="tel:+380631234567")
  img(src="somePath" alt="")
  | + 380631234567

我也发现很难使用pug,所以像我链接的工具真有帮助。如果您正在寻找替代品,只需谷歌 html to pug converter