21

Using Scaladoc, is there a way to include hyperlink to some external HTTP URL ?

using Javadoc this was easy.. but I am having trouble figuring out the syntax for Scaladoc. I looked here: https://wiki.scala-lang.org/display/SW/Writing+Documentation, but came up dry.

Say I want to link to an external resource like this > https://en.wikipedia.org/wiki/Aardvark < in my documentation. What is the markup I should use ?

Ajay
  • 18,086
  • 12
  • 59
  • 105
Chris Bedford
  • 2,560
  • 3
  • 28
  • 60

1 Answers1

36

You can try this :

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.

meucaa
  • 1,455
  • 2
  • 13
  • 27