英文:
Create godoc URL with different link text
问题
根据《Godoc: documenting Go code》博文:
URL将被转换为HTML链接;不需要特殊标记。
然而,是否有一种方法可以创建一个具有不同链接文本的HTML链接,而不是URL?
英文:
According to the "Godoc: documenting Go code" blog post:
> URLs will be converted to HTML links; no special markup is necessary.
However, is there a way to create an HTML link with different link text than the URL?
答案1
得分: 4
Go 1.19引入了一种指定链接文本的格式。链接文本在方括号之间内联书写:[链接文本]
。链接目标在单独的一行上指定,如下所示:
[链接文本]: https://example.com/link/target
有关完整细节,请参阅Go Doc Comment documentation。
Go 1.18及更早版本的解答:
Godoc.org将文本“RFC 1234”链接化为在线RFC(示例在此)。
除此之外,godoc工具和godoc.org没有提供使用与URL不同的文本的方法。
英文:
Go 1.19 introduced a format for specifying the link text. The link text is written inline between square brackets: [Link Text]
. The link target is specified on a separate line like this:
[Link Text]: https://example.com/link/target
See the Go Doc Comment documentation for the complete details.
Answer for Go 1.18 and earlier:
Godoc.org linkifies text like "RFC 1234" to the online RFC (example here).
With that exception, the godoc tool and godoc.org do not provide a way to use text different from the URL.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论