Closed Jokcy closed 1 year ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
mdx | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Jun 26, 2023 4:33am |
Patch and project coverage have no change.
Comparison is base (
7504cfb
) 100.00% compared to head (94026da
) 100.00%.
:exclamation: Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
Thank you! :)
In our playground page, we use
capture
inremarkPlugins
andrehypePlugins
to capture the ast on different step. But after generate the mdast or hast, theevaluate
function will keep going and later plugins will do some mutation on the ast object, which result to what we showed to user of mdast/hast in not correct on that step. So I juststructuredClone
the ast as a snapshot when capture and then save tofile
.When compile
<A b={<B><C /></B>}></A>
, this mr generate<C />
asJSXElement
, the old version generate asCallExpression
with callee of_jsx
.