You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to load the generated markdown files into a website built with Docusaurus and got some compile errors like this: SyntaxError: C:\docs\defaultdocs\myFile.md: Expected corresponding JSX closing tag for <TimeSpan>...
The markdown code that caused this issue is ## myClassName(Nullable<TimeSpan>) Constructor.
My guess is that < and > should be escaped so the compiler won't think it's JSX.
The text was updated successfully, but these errors were encountered:
I was trying to load the generated markdown files into a website built with Docusaurus and got some compile errors like this:
SyntaxError: C:\docs\defaultdocs\myFile.md: Expected corresponding JSX closing tag for <TimeSpan>...
The markdown code that caused this issue is
## myClassName(Nullable<TimeSpan>) Constructor
.My guess is that
<
and>
should be escaped so the compiler won't think it's JSX.The text was updated successfully, but these errors were encountered: