h1 Tags
h2 Tags
h3 Tags
h4 Tags
h5 Tags
h6 Tags
P tag
bold
Code tag
<html>
<body>
<h2>An Unordered HTML List</h2>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<h2>An Ordered HTML List</h2>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</body>
</html>
This feature is powered by an MDXProvider
. If you are importing Markdown in a React page, you have to supply this provider yourself through the MDXContent
theme component.
import FeatureDisplay from './_featureDisplay.mdx'
import MDXContent from '@theme/MDXContent'
export default function LandingPage() {
return (
<div>
<MDXContent>
<FeatureDisplay />
</MDXContent>
</div>
)
}
If you don't wrap your imported MDX with MDXContent
, the global scope will not be available.
This feature is powered by an MDXProvider
. If you are importing Markdown in a React page, you have to supply this provider yourself through the MDXContent
theme component.
import FeatureDisplay from './_featureDisplay.mdx'
import MDXContent from '@theme/MDXContent'
export default function LandingPage() {
return (
<div>
<MDXContent>
<FeatureDisplay />
</MDXContent>
</div>
)
}
If you don't wrap your imported MDX with MDXContent
, the global scope will not be available.
This feature is powered by an MDXProvider
. If you are importing Markdown in a React page, you have to supply this provider yourself through the MDXContent
theme component.
import FeatureDisplay from './_featureDisplay.mdx'
import MDXContent from '@theme/MDXContent'
export default function LandingPage() {
return (
<div>
<MDXContent>
<FeatureDisplay />
</MDXContent>
</div>
)
}
If you don't wrap your imported MDX with MDXContent
, the global scope will not be available.
This feature is powered by an MDXProvider
. If you are importing Markdown in a React page, you have to supply this provider yourself through the MDXContent
theme component.
import FeatureDisplay from './_featureDisplay.mdx'
import MDXContent from '@theme/MDXContent'
export default function LandingPage() {
return (
<div>
<MDXContent>
<FeatureDisplay />
</MDXContent>
</div>
)
}
If you don't wrap your imported MDX with MDXContent
, the global scope will not be available.
This feature is powered by an MDXProvider
. If you are importing Markdown in a React page, you have to supply this provider yourself through the MDXContent
theme component.
import FeatureDisplay from './_featureDisplay.mdx'
import MDXContent from '@theme/MDXContent'
export default function LandingPage() {
return (
<div>
<MDXContent>
<FeatureDisplay />
</MDXContent>
</div>
)
}
If you don't wrap your imported MDX with MDXContent
, the global scope will not be available.
function HelloCodeTitle(props) {
return <h1>Hello, {props.name}</h1> (Highlght next line)
}
function HighlightMoreText() {
if {
return 'This range is highlighted!' (Highlght block)
}
return 'Nothing highlighted'
}
- Coffee
- Tea
- Milk
<Tabs groupId="operating-systems">
<TabItem value="win" label="Windows">Use Ctrl + C to copy.</TabItem>
<TabItem value="mac" label="macOS">Use Command + C to copy.</TabItem>
</Tabs>
<Tabs groupId="operating-systems">
<TabItem value="win" label="Windows">Use Ctrl + V to paste.</TabItem>
<TabItem value="mac" label="macOS">Use Command + V to paste.</TabItem>
</Tabs>
Samples of parsing failures
A paragraph starting with a JSX tag will be seen entirely as a JSX string:
- Apple
- Orange
- Banana
This is an apple 🍎
This is an orange 🍊
This is a banana 🍌

