From 19302c491383fb339cdecc43704c639bcf472f3f Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Fri, 17 Sep 2021 21:27:00 +0300 Subject: [PATCH] docs: clarify MDX version used (#5575) * docs: clarify MDX version used * Update MDX Playground link --- .../docs/guides/markdown-features/markdown-features-react.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/guides/markdown-features/markdown-features-react.mdx b/website/docs/guides/markdown-features/markdown-features-react.mdx index 4f920c5d20..08aed08e3a 100644 --- a/website/docs/guides/markdown-features/markdown-features-react.mdx +++ b/website/docs/guides/markdown-features/markdown-features-react.mdx @@ -11,7 +11,7 @@ import BrowserWindow from '@site/src/components/BrowserWindow'; ## Using JSX in Markdown {#using-jsx-in-markdown} -Docusaurus has built-in support for [MDX](https://mdxjs.com/), which allows you to write JSX within your Markdown files and render them as React components. +Docusaurus has built-in support for [MDX v1](https://mdxjs.com/), which allows you to write JSX within your Markdown files and render them as React components. :::note @@ -23,7 +23,7 @@ While both `.md` and `.mdx` files are parsed using MDX, some of the syntax are t MDX is not [100% compatible with CommonMark](https://github.com/facebook/docusaurus/issues/3018). -Use the **[MDX playground](https://mdxjs.com/playground)** to ensure that your syntax is valid MDX. +Use the **[MDX playground](https://mdx-git-renovate-babel-monorepo-mdx.vercel.app/playground)** to ensure that your syntax is valid MDX. :::