Is there a way to link from the documentation for ...
# dokka
w
Is there a way to link from the documentation for one module to the docs for another module? In a gradle multiproject build, I want to refer to one subproject in the documentation for another subproject. I've tried a couple different link syntax variations in the module's markdown file, but haven't been able to get a link rendered in the HTML.
c
Do you want to link to the module header, or to a specific symbol?
[Text][fully.qualified.name]
should work to link to a symbol from another module, when running the multi-module output. I'm not aware of a way to link to the module header, however.
o
AFAIK, it's not possible to create a link to module May be only via markdown relative/absolute links
w
My hope is to link to the module header. Thanks for the feedback.
I played around with it a little more and managed to get it to work using an HTML style link:
<a href="../sibling-module/index.html">sibling-module</a>
I tried a lot of different markdown style links, but couldn't find a syntax that would work.