Stream overview anchors

So links like 'https://doc.akka.io/docs/akka/current/stream/stages-overview.html#asjavastream' should keep (somewhat) working
This commit is contained in:
Arnout Engelen 2018-04-23 14:37:20 +02:00 committed by Konrad `ktoso` Malawski
parent def6faa621
commit 2a7ce572d2
2 changed files with 131 additions and 131 deletions

View file

@ -172,7 +172,7 @@ object StreamOperatorsIndexGenerator extends AutoPlugin {
lines
.map(_._2)
.sortBy(_._2)
.map { case (element, method, md, description) => s"|$element|@ref[$method]($md)|$description|" }
.map { case (element, method, md, description) => s"""|$element|<a name="${method.toLowerCase}"></a>@ref[$method]($md)|$description|""" }
.mkString("\n")
)