Replies: 2 comments 8 replies
-
Hi It's impossible to help without a repro
If links are broken you'd rather fix them one by one, or your users will navigate to 404 pages.
Make sure to understand how Docusaurus and MDX works. Docusaurus is using MDX and not CommonMark. There are differences to take into consideration: you are not using embedded HTML anymore but JSX. Docusaurus v2 always uses MDX, but with Docusaurus v3 (in beta, release soon) it's possible to use CommonMark (with some limitations that we'll fix, see #9092 for details) |
Beta Was this translation helpful? Give feedback.
-
wonder what changed that made the search local not work for the v3 |
Beta Was this translation helpful? Give feedback.
-
I am working on using Docusaurus to create a central location for markdowns coming from many sources, I have written a GitLab plugin to load data from GitLab by querying the GitLab API using Axios and writing them under the "docs" directory under Docusaurus, so we are talking about thousands of markdowns, I keep getting issues related to broken markdown links which I set to ignore in the docusaurus.config.js file and that worked fine, but now I am getting lots of issues related to missing JSX tags, I do understand that I can do some post-processing to either escape the tags or close them if possible ... is there a way to make Docusaurus be more lenient toward this as this is a lot of post-processing and I keep finding more and more corner cases...?
Beta Was this translation helpful? Give feedback.
All reactions