I'd like to generate my TypeDoc files with the markdown plugin, and then use the zod plugin so the inferred types actually tell you something and not just
z.infer<typeof AccountResponse>
But when I run
typedoc --plugin typedoc-plugin-markdow
and then
typedoc --plugin typedoc-plugin-zod
My markdown files turn html again, as it is typedocs default.
Any ideas on how to do this?