Markdown Test Document

Published on –

tl;dr – A document to test various markdown elements.


Markdown Test Document

This document tests various markdown elements to ensure proper rendering.

Text Formatting

Bold text and also bold Italic text and also italic Bold and italic and also bold and italic Strikethrough text Inline code

Headings

H1 Heading

H2 Heading

H3 Heading

H4 Heading

H5 Heading
H6 Heading

Lists

Unordered Lists

Ordered Lists

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

Code Blocks

Inline Code

Use console.log() to output to the console.

Code Blocks

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

greetUser('World');
def calculate_sum(a, b):
    return a + b

result = calculate_sum(5, 3)
print(f"The sum is: {result}")
# Install dependencies
npm install

# Run development server
npm run dev

Blockquotes

This is a blockquote. It can span multiple lines.

This is a nested blockquote.

Link to Google Link with title

Auto-link: https://github.com

Tables

Column 1Column 2Column 3
Row 1, Col 1Row 1, Col 2Row 1, Col 3
Row 2, Col 1Row 2, Col 2Row 2, Col 3

Horizontal Rule


Special Characters

HTML Elements

Bold HTML Italic HTML Inline HTML code

HTML block element

Task Lists

Definition Lists

Term 1 : Definition 1

Term 2 : Definition 2a : Definition 2b

Footnotes

This text has a footnote1.

Another footnote reference2.

Footnotes

  1. This is the first footnote.

  2. This is a named footnote.