This is a demo page to refer MDX
DesignCard
heal yourself,but don't rush
help people, but have boundaries
love others,but don't let them harm you
love yourself,but don't become egotistical
stay informed,but don't overwhel yourself
embrace change,but keep pursuing your goals
DesignCard.tsx
import { DesignCard, Highlight, Underline } from "../components/DesignCard";
<DesignCard>
<Highlight>heal yourself,</Highlight><Underline>but don't rush</Underline> <br />
<Highlight>help people,</Highlight><Underline> but have boundaries</Underline> <br />
<Highlight>love others,</Highlight><Underline>but don't let them harm you</Underline> <br />
<Highlight>love yourself,</Highlight><Underline>but don't become egotistical</Underline> <br />
<Highlight>stay informed,</Highlight><Underline>but don't overwhel yourself</Underline> <br />
<Highlight>embrace change,</Highlight><Underline>but keep pursuing your goals</Underline>
</DesignCard>
Blockquotes 💖❤
"The way you made me feel that morning has absoultely nothing to do with anyone else, and everything to do with you . i was just falling in love with the morning because of you."
> "The way you made me feel that morning has absoultely **nothing** to do with **anyone** else, and everything to do with you. i was just falling in love with the morning **because of you.**"
File-tree
Floder structure
import { Tree, File, Folder } from 'components/file-tree'
<Tree>
<Folder name="pages" defaultOpen>
<File name="app.jl" />
<File name="Frame02.jl" />
</Folder>
</Tree>
StrikeThrough
removed
markdown
~removed~
Tasklist
- sudo apt update
- sudo apt install
- Hello mom ❤
markdown
- [ ] sudo apt update
- [x] sudo apt install
- [ ] Hello mom ❤
Table
Syntax | Description | Test Text |
---|---|---|
Header | Title | Here's this |
Paragraph | Text | And more |
Strikethrough |
markdown
| Syntax | Description | Test Text |
| :------------ | :---------: | ----------: |
| Header | Title | Here's this |
| Paragraph | Text | And more |
| Strikethrough | | ~~Text~~ |
Autolinks
Visit https://rudrajoshi.me (opens in a new tab)
markdown
Visit https://rudrajoshi.me
LaTex
The Pythagorean equation: .
demo.js
The **Pythagorean equation**: $a=\sqrt{b^2 + c^2}$ .
Callout
👾
Space Invaders is a 1978 shoot 'em up arcade game developed by Tomohiro Nishikado.
markdown
import { Callout } from "nextra-theme-docs";
// info, error, warning
<Callout emoji="👾">
**Space Invaders** is a 1978 shoot 'em up arcade game developed by Tomohiro
Nishikado.
</Callout>;
Example of clipboard
demo.js
let a = 1;
console.log(a);