Back to Blog
Testtestmarkdown

Markdown Rendering Test

A comprehensive test of all markdown elements to verify styling.

Cluttered Team
December 28, 2024
2 min read

Heading 1

This is a paragraph after an h1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Heading 2

This is a paragraph after an h2. Here's some bold text and some italic text and some bold italic text.

Heading 3

This is a paragraph after an h3. Here's some inline code in the middle of a sentence.

Heading 4

This is a paragraph after an h4.


Text Formatting

Here's bold text, italic text, strikethrough, and inline code.

Here's a link to Google and here's an internal link.

Lists

Unordered List

  • First item
  • Second item
  • Third item with bold
    • Nested item one
    • Nested item two
  • Fourth item

Ordered List

  1. First step
  2. Second step
  3. Third step
    1. Sub-step one
    2. Sub-step two
  4. Fourth step

Blockquote

This is a blockquote. It should stand out from the regular text and have some visual distinction.

It can span multiple paragraphs.

Code Blocks

Here's a JavaScript code block:

function cleanNodeModules(projectPath) {
  const nodeModules = path.join(projectPath, 'node_modules');

  if (fs.existsSync(nodeModules)) {
    console.log(`Cleaning: ${nodeModules}`);
    fs.rmSync(nodeModules, { recursive: true });
    return true;
  }

  return false;
}

Here's a bash code block:

# Find all node_modules folders
find ~/projects -name "node_modules" -type d -prune

# Check disk usage
du -sh ~/projects/*/node_modules

Tables

FeatureFreePro
Scanning
Auto-cleanup
Notifications
Priority Support

Images

Images would go here if we had any.

Horizontal Rule

Above the rule.


Below the rule.

Task List

  • Completed task
  • Incomplete task
  • Another incomplete task

Final Paragraph

This is the final paragraph to test spacing at the end of the article. It should have appropriate margin from the content above.