gpt4 book ai didi

javascript - 如何隐藏使用 PhantomJS 创建 PDF 的链接的 URL?

转载 作者:行者123 更新时间:2023-11-29 19:08:57 25 4
gpt4 key购买 nike

我开始使用 PhantomJS 生成 PDF,但在我添加链接的地方,PhantomJS 将完整的 URL 放在括号之间。如果可以的话,我想避免这种行为。有人知道怎么做吗?

Example of the PDF

最佳答案

谷歌搜索后我发现有人使用 CSS 添加了该行为,您可以在 https://github.com/ariya/phantomjs/issues/10196 中阅读它添加的 CSS 是:

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 中阅读更多相关信息

关于javascript - 如何隐藏使用 PhantomJS 创建 PDF 的链接的 URL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40668475/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com