Document how to refer to methods from scaladoc (#24482)
* Document how to refer to methods from scaladoc
This commit is contained in:
parent
070645767d
commit
8957a6728f
1 changed files with 7 additions and 1 deletions
|
|
@ -245,7 +245,13 @@ The generated html documentation is in `akka-docs/target/paradox/site/main/index
|
||||||
|
|
||||||
### Scaladoc
|
### Scaladoc
|
||||||
|
|
||||||
Akka generates class diagrams for the API documentation using ScalaDoc. This needs the `dot` command from the Graphviz software package to be installed to avoid errors. You can disable the diagram generation by adding the flag `-Dakka.scaladoc.diagrams=false`. After installing Graphviz, make sure you add the toolset to the PATH (definitely on Windows).
|
Akka generates class diagrams for the API documentation using ScalaDoc.
|
||||||
|
|
||||||
|
Links to methods in ScalaDoc comments should be formatted
|
||||||
|
`[[Like#this]]`, because `[[this]]` does not work with genjavadoc, and
|
||||||
|
IntelliJ warns about `[[#this]]`.
|
||||||
|
|
||||||
|
The Scaladoc tool needs the `dot` command from the Graphviz software package to be installed to avoid errors. You can disable the diagram generation by adding the flag `-Dakka.scaladoc.diagrams=false`. After installing Graphviz, make sure you add the toolset to the PATH (definitely on Windows).
|
||||||
|
|
||||||
### JavaDoc
|
### JavaDoc
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue