有没有办法在 Scaladoc 中包含指向某些外部 HTTP URL 的超链接?

Is there a way to include hyperlink to some external HTTP URL in Scaladoc?

使用 Scaladoc,有没有办法将 hyperlink 包含到某些外部 HTTP URL?

使用 Javadoc 这很容易..但是我在弄清楚 Scaladoc 的语法时遇到了问题。我看了这里:https://wiki.scala-lang.org/display/SW/Writing+Documentation,但结果很干。

说我想 link 像这样的外部资源 > https://en.wikipedia.org/wiki/Aardvark < 在我的文档中。我应该使用什么标记?

你可以试试这个:

External links: [[http://scala-lang.org Scala web site]] becomes Scala web site. The URL part must start with a scheme name (like http:) and must not contain white space. The name part (Scala web site) is optional.