答案 0 :(得分:3)
在谷歌搜索后我发现有人使用CSS添加了这种行为,你可以在添加CSS的https://github.com/ariya/phantomjs/issues/10196中阅读它:
a[href]:after {
content: "( " attr(href) " )";
text-decoration: underline;
margin-left: 2px;
color: #428bca;}
然后,为了避免您可以在CSS中包含清除内容规则的规则:
a[href]:after { content : "" }
然后按原样运作。您还可以在https://github.com/alanshaw/markdown-pdf/issues/63
中详细了解相关信息