链接未正确显示

时间:2013-03-15 18:40:39

标签: hyperlink ascii haml

在我的haml代码中,我输入了以下链接

.download_section
  %a{href:"https://mailto:xxxx@gmail.com"}
    %b
      Work wth us

然而,在显示屏中,在检查链接后,我意识到只显示了'gmail'

enter image description here

我尝试将@和冒号更改为ASCII代码,但似乎没有帮助

.download_section
  %a{href:"https://mailto:xxxx@gmail.com"}
   %b
    Work wth us

有人可以告诉我如何让链接显示原样吗?

1 个答案:

答案 0 :(得分:0)

如果您尝试以下内容怎么办?

.download_section
  %a{:href => "mailto:xxxx@gmail.com"} Work with us

链接可能会被您问题代码中的https://部分搞糊涂了。 (查看有关mailto links here的更多信息。)