Anyone know if it's possible to add custom tags wi...
# dokka
c
Anyone know if it's possible to add custom tags with a Dokka plugin? You know like how you can do it with JavaDocs.
From a bit of digging, it looks like I could implement my own parser, even to just have it delegate to another parser, and then add a new tag that way. I am still keeping this open, since I wanna know if anyone here knows a better way.
v
I can offer a better way. Dokka handles unknown tags as
CustomTagWrapper
in documentable model. For example, you can take a look at mathjax plugin or a test.
c
Ah, yes, that looks like what I'm looking for. I'll check it out. Thanks!