-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiline HTML comments throw a MDX compilation error in canary (3.0.0-alpha.0) #9084
Multiline HTML comments throw a MDX compilation error in canary (3.0.0-alpha.0) #9084
Comments
Thanks for reporting. Unfortunately there's no stacktrace logged in this case in the console output, but only on the webpack dev server:
I can reproduce on our own website, but can't reproduce on the MDX playground surprisingly 🤷♂️ Will need to investigate all this a bit more, but HTML comments like this are definitively supposed to work with the CommonMark format. First of all, for this file, do you want to use keep using the mdx format (as in v2?) or do you want to switch to commonmark? From now on MDX does not support HTML comments anymore (although we provide a compat mode), so if you want to keep using the same parsing logic you eventually have to use MDX comments instead. I just want to make sure that you understand that using the |
Thanks @slorber, I suspect that we'll initially stick with .md and commonmark, but I suspect we'll migrate to mdx as default for new content and then I'll have the unenviable task of updating existing content too (currently 860 pages). I'm still trying to get my head around the various changes we need to make to get this to work. So far this is the only breaking change apart from the expected rewrite of our mdx remark plugins. |
Hmmm apparently this is related to a bug in remark-comment, that I already reported 🤪 |
Already sent a PR with a fix: leebyron/remark-comment#3 In the meantime you can use this escape hatch: const siteConfig = {
markdown: {
mdx1Compat: {
comments: true
},
preprocessor: ({ filePath, fileContent }) => {
// TODO temporary fix for https://github.com/facebook/docusaurus/issues/9084
fileContent = fileContent.replaceAll("<!--\n", "<!-- \n");
return fileContent;
}
}
}; To make sure we are able to support multi-line comments, I added some to our own site as part of #9093 |
Have you read the Contributing Guidelines on issues?
Prerequisites
npm run clear
oryarn clear
command.rm -rf node_modules yarn.lock package-lock.json
and re-installing packages.Description
The following HTML comments are fine:
However, a multi-line comment which does not start on the opening line leads to an error:
And the error:
Reproducible demo
No response
Steps to reproduce
Create an mdx file with:
Expected behavior
HTML comment not shown
Actual behavior
An error in the yarn console:
Your environment
3.0 branch is at andrewnicols/devdocs@docusaurus3
Self-service
The text was updated successfully, but these errors were encountered: