Back to all posts

Markdown Parsing Showcase

Markdown Parsing Showcase

Main Heading (H1)

This is a standard paragraph demonstrating the basic text rendering capabilities of our custom markdown parser. It handles multiple lines grouped together until a blank line is encountered.

Subheading (H2)

We also support various inline formatting options. You can make text bold, or italicized. You can also add inline code snippets and links to other pages.

Lists (H3)

Here is an unordered list:

  • First item in the list
  • Second item with some bold text
  • Third item using an asterisk

Multiline Code Blocks

We recently added support for standard multiline code blocks. Here is an example:

function helloWorld() {
  console.log("Hello, world!");
  return true;
}

Custom Terminal Blocks

And here is the custom terminal screen element you requested:

$ bun run build
Built in 42ms → dist/
$ bun run dev
Dev server running at http://localhost:3000

This concludes the markdown showcase!