Hello. I've been extending the
DocumentableToPageTranslator in version 1.7.20 to customize documentation generation in my preferred way. I did this by extending
DefaultPageCreator to configure the markdown as I wanted. However, after upgrading to 1.9.20, I noticed the introduction of an internal class called
DocumentableSourceLanguageParser. This class is internal and thus inaccessible to developers like me. Nonetheless,
DefaultPageCreator
is still an open class, and can still be extended. It appears that external developers can't use the internal class. Is extending in this manner still a viable approach? It seems that this might not be the intended extension method for Dokka anymore. If there's something I'm missing, I’d appreciate any insights. Thanks!