Card

Testing Markdown Features

December 24, 2025

Testing Markdown Features

This post demonstrates the various markdown features available in this notebook blog.

Text Formatting

You can write bold text and italic text. You can also combine them for bold italic text.

Lists

Here's an unordered list:

  • First item
  • Second item
    • Nested item
    • Another nested item
  • Third item

And an ordered list:

  1. First step
  2. Second step
  3. Third step

Code

Inline code looks like this. Here's a code block:

function greet(name) {
  console.log(`Hello, ${name}!`);
}

greet("World");

Quotes

This is a blockquote. It's perfect for highlighting important thoughts or quoting others.

You can have multiple paragraphs in a quote.

Links

Check out Next.js for building React applications.

Horizontal Rules

You can add horizontal rules to separate sections:


Tables

Feature Supported
Markdown
Code highlighting
Tables
Images

Final Thoughts

This notebook supports all the standard markdown features you'd expect, rendered beautifully on the composition notebook aesthetic. The ruled lines and margin line give it that authentic notebook feel while keeping everything readable.