Since my project heavily uses packages for groupin...
# dokka
r
Since my project heavily uses packages for grouping features (instead of separate modules), e.g.
Copy code
com.example.auth
com.example.auth.services
com.example.auth.token

com.example.security
com.example.security.crypto
com.example.security.utilities

com.example.common
com.example.common.math
is there a way to configure grouping these packages similar to how modules are grouped with dokka without changing by project structure? e.g.
Copy code
Module auth
Packages
com.example.auth,
com.example.auth.services,
com.example.auth.token

Module security
Packages
com.example.security
com.example.security.crypto
com.example.security.utilities
and so on.
currently with markdown included the output dokka html lists my base documentation as
Copy code
Module core-libraries
Packages
com.example.auth
com.example.auth.services
com.example.auth.token
com.example.common
com.example.common.math
com.example.security
com.example.security.crypto
com.example.security.utilities
i
I don't see a way to change any of it out of the box, unfortunately 😞
r
ah no problem, thanks for confirming .. I'll restructure my project in the future to take advantage of this