Closed DavidBal closed 3 months ago
hi @DavidBal . You are seeing this behaviour because of this line in your doc comments:
@returns Gibt ein {@link TryResult | TryResult<T\>} zurück.
TryResult<T\>
is not valid MDX.
You have 2 options to fix this:
1) Additionally escape the opening bracket
TryResult\<T\>
2) Add siteConfig.markdown.format: 'detect'
to docusaurus.config which will parse as commonMark,
Hi @tgreyuk,
thanks for the answer adding the \
in front of the <
fixed this problem.
Kind regards, David
What package is the bug related to?
docusaurus-plugin-typedoc
Describe the issue
Hi,
when we try to create the markdown for docusaurus, the markdown files are created but some of them create the following error:
This ist the created markdown:
The function looks like this:
TypeDoc configuration
Expected behavior
The created markdown file should work with docusaurus.