How can I generate multi-language documentation with typedoc?

270 views Asked by At

I'm looking for a way to support multiple languages ​​by writing typescript comments like this:

/**
 * @en english comment
 * @fr commentaire français
 *
 */
export class MyClass {}

For example, is there an idea that one of the comments @en and @fr is selected and output? I tried to find typedoc, but there seems to be no such function.

0

There are 0 answers