• Test
  • Markdown

Comprehensive Markdown Test Article

Peter Slovanky

March 7, 2024

4 Mins Read

Comprehensive Markdown Test Document

Introduction

This document serves as a comprehensive test of Markdown elements to ensure proper rendering on your website. It includes various formatting options and structural elements.

Text Formatting

Italic text using asterisks Bold text using double asterisks Bold and italic text using triple asterisks Strikethrough text using double tildes

Headings

Level 3 Heading

Level 4 Heading

Level 5 Heading
Level 6 Heading

Lists

Unordered List

  • First item
  • Second item
    • Nested item
      • Deeply nested item
  • Third item

Ordered List

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

Task List

  • Completed task
  • Incomplete task
  • Another incomplete task

Links

Standard Link to Google Link with Title

Automatic link: https://www.example.com

Code Blocks

Inline code: console.log('Hello, World!')

Python code block:

def hello_world():
    print("Hello, World!")
    return True

# This is a Python comment

JavaScript code block:

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

// JavaScript comment example

Blockquotes

This is a blockquote

It can span multiple lines

Even with nested elements

Tables

Branch Commit
main 0123456789abcdef
staging fedcba9876543210

Horizontal Rules


Footnotes

Here's a sentence with a footnote1.

Images

Placeholder Image

HTML Inside Markdown

This is a hidden content block that can be expanded.

Escape Characters

*This text is not italic because of the escape character*

Emoji Support 🚀

Markdown can sometimes support emojis like 👍, 🌟, and 🔥

Mathematical Notation

Inline math: $E = mc^2$

Block math:

$$ \int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi} $$

Extended Syntax Example

Term 1 : Definition of term 1

Term 2 : Definition of term 2 : Another definition for term 2

Footnotes

  1. This is the footnote explanation.