Markdown Sandbox
•1 min read
This website is using Next.js and a library called Nextra. It allows you to write Markdown and focus on the content of your portfolio. Let's take a look at all the possible Markdown options.
h2 Heading
h3 Heading
h4 Heading
h5 Heading
h6 Heading
Emphasis
This is bold text
This is italic text
Draft eh
Blockquotes
Dude, sucking at sumthin’ is the first step towards being sorta good at something. - Jake the Dog
Lists
Unordered
- Finn the Human
- Jake the Dog
- Princess Bubblegum
Ordered
- "Slumber Party Panic"
- "Trouble in Lumpy Space"
- "Prisoners of Love"
Code
Inline code
// app/layout.js
// SearchBar is a Client Component
import SearchBar from './SearchBar'
// Logo is a Server Component
import Logo from './Logo'
// Layout is a Server Component by default
export default function Layout({ children }) {
return (
<>
<nav>
<Logo />
<SearchBar />
</nav>
<main>{children}</main>
</>
)
}
Tables
Character | Quote |
---|---|
Finn the Human | You’re letting your brain dial turn your fear volume up. |
Jake The Dog | To live life, you need problems. If you get everything you want the minute you want it then what’s the point of living? |
Princess Bubblegum | The answer was so simple, I was too smart to see it. |