Showcasing Markdown

November 12, 2025 (1mo ago)

This post demonstrates the various features available in my blog, thanks to MDX and custom components.

You can use all standard Markdown features:

  • Lists
  • Bold and italic text
  • Links

Code Blocks

function hello(name) {
  return `Hello, ${name}!`;
}

Live Code Sandbox

<!DOCTYPE html>
<html>

<head>
  <title>Parcel Sandbox</title>
  <meta charset="UTF-8" />
  <link rel="stylesheet" href="/styles.css" />
</head>

<body>
  <h1>Hello world</h1>
</body>

</html>

Tweet Embeds

Images

A sample image from the public folder

Custom Components

You can use custom React components, like the code sandbox above, or even more advanced ones.


This post is a quick tour of what’s possible. Try writing your own MDX post to see even more!