docusaurus/website/_dogfooding/_docs tests/tests/admonitions.mdx
Sébastien Lorber 1700a293c4 fix: v3 admonitions should support v2 title syntax for nested admonitions (#9535)
Fix admonition title mdx v1 compat option when admonition is nested
2023-11-30 18:47:50 +01:00

135 lines
1.5 KiB
Text
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Admonitions tests
## Empty content
:::note Title Only
:::
## Empty fragment content
:::note Title Only
<></>
:::
## Large font icon
import Admonition from '@theme/Admonition';
```mdx-code-block
<Admonition
type="tip"
icon={<span style={{fontSize: 60}}>💡</span>}
title="Did you know...">
content
</Admonition>
<Admonition
type="info"
icon={<span style={{fontSize: 40}}></span>}
title="Did you know...">
content
</Admonition>
```
## Large svg icon
```mdx-code-block
import InfoIcon from "@theme/Admonition/Icon/Info"
<Admonition
type="tip"
icon={<InfoIcon style={{width: 60, height: 60}}/>}
title="Did you know...">
content
</Admonition>
<Admonition
type="info"
icon={<InfoIcon style={{width: 40, height: 40}}/>}
title="Did you know...">
content
</Admonition>
```
## Indented admonitions
See admonition title v2 compat syntax bug: https://github.com/facebook/docusaurus/issues/9507
1. Item 1
:::info Important Considerations
For better experience, try to keep the upgrade experience smooth.
:::
- **Scale-up cluster**
:::caution Warning
Scaling up a cluster may cause several minutes of downtime. Please exercise caution.
:::
## Official admonitions
Admonitions that are [officially documented](/docs/markdown-features/admonitions)
:::note
note
:::
:::info
info
:::
:::tip
tip
:::
:::warning
warning
:::
:::danger
danger
:::
## Legacy admonitions
:::secondary
secondary
:::
:::important
important
:::
:::success
success
:::
:::caution
caution
:::