Created At 2025-12-05

Testing Markdown Grammar

This is a comprehensive test to demonstrate various markdown elements and how they render with our CSS styling.

Text Formatting

Here are different text formatting options:

Bold text and italic text and bold italic text.

Strikethrough text and inline code.

Lists

Unordered List

Ordered List

  1. First ordered item
  2. Second ordered item
    1. Nested ordered item
    2. Another nested item
  3. Third ordered item

Code Blocks

function greet(name) {
  console.log(`Hello, ${name}!`);
  return `Welcome to Mian's blog`;
}

const message = greet("Visitor");
console.log(message);
def calculate_fibonacci(n):
    """Calculate the nth Fibonacci number."""
    if n <= 1:
        return n
    return calculate_fibonacci(n-1) + calculate_fibonacci(n-2)

# Example usage
for i in range(10):
    print(f"F({i}) = {calculate_fibonacci(i)}")

Blockquotes

This is a blockquote.

It can span multiple lines.

And it can have nested blockquotes.

Tables

NameAgeOccupation
Alice28Developer
Bob32Designer
Carol24Writer
FeatureStatusPriority
Responsive Design✅ DoneHigh
Dark Mode🔄 In ProgressMedium
Search Functionality❌ Not StartedLow

External Link

Internal Link

Image Alt Text

Horizontal Rule


Admonitions/Callouts

Note: This is a note box for additional information.

It can contain multiple paragraphs and formatted text.

Warning: This is a warning box for important notices.

Tip: This is a tip box with helpful suggestions.

Math (if supported)

Inline equation: E=mc2E = mc^2

Tasks/CHECKLISTS

Embedded Content

Summary

This comprehensive markdown test covers:

The styling should be consistent across all elements using our global CSS variables and design system.

MDX Features

Using Variables

Hello from MDX! The current year is 2026.

Using JSX Elements

This is a JSX element embedded in MDX

Conditional Rendering

Welcome back! You are logged in.

Regular user access.

Mapping Data