Hi, it may be a newbie question, but I did not see...
# dokka
r
Hi, it may be a newbie question, but I did not see it mentioned - the generated HTML pages are huge because every single element is standalone and duplicated. So a single enum entry html page takes 160 lines of code. Meaning if I want to embed a quite small API reference as a static page in my website, it will take many tens of thousands of lines. Is this expected and is there no way around it?
v
This is a known issue. For example, https://github.com/Kotlin/dokka/issues/1855 However, you can customize the footer and header using templates - https://kotlinlang.org/docs/dokka-html.html#templates to save some bytes.
👍 1