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

Ordered

  1. "Slumber Party Panic"
  2. "Trouble in Lumpy Space"
  3. "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

CharacterQuote
Finn the HumanYou’re letting your brain dial turn your fear volume up.
Jake The DogTo live life, you need problems. If you get everything you want the minute you want it then what’s the point of living?
Princess BubblegumThe answer was so simple, I was too smart to see it.

Links

Footnotes

Footnotes

  1. Footnote can have markup

    and multiple paragraphs.

  2. Footnote text.

2023 © Bekzod Norkuziev.RSS