创建具有不同链接文本的godoc URL

huangapple go评论77阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2017年1月24日 07:32:19
  • 转载请务必保留本文链接:https://go.coder-hub.com/41817569.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定