does anybody know if the reference section on the kotlinlang website (https://kotlinlang.org/api/latest/jvm/stdlib/index.html) can be generated locally? Or another way to put it, is, is the code that generates these pages part of the kotlin project on github? Another project?
m
Mike
06/17/2019, 1:31 PM
It uses Dokka to generate it, and is stored in the class files in the repo.
https://github.com/JetBrains/kotlin/tree/master/libraries/stdlib
So you should be able to run the build locally to generate the doc site. But I haven't done it, so don't have instructions.