Add title and version to Scaladoc pages (#26632)
This commit is contained in:
parent
c06cf62b64
commit
24212d3334
1 changed files with 4 additions and 1 deletions
|
|
@ -45,7 +45,10 @@ object Scaladoc extends AutoPlugin {
|
|||
|
||||
def scaladocOptions(ver: String, base: File): List[String] = {
|
||||
val urlString = GitHub.url(ver) + "/€{FILE_PATH}.scala"
|
||||
val opts = List("-implicits", "-groups", "-doc-source-url", urlString, "-sourcepath", base.getAbsolutePath)
|
||||
val opts = List("-implicits", "-groups", "-doc-source-url", urlString, "-sourcepath", base.getAbsolutePath,
|
||||
"-doc-title", "Akka",
|
||||
"-doc-version", ver
|
||||
)
|
||||
CliOptions.scaladocDiagramsEnabled.ifTrue("-diagrams").toList ::: opts
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue