Testing markdown rendering

Markdown Rendering Test Document

Basic Text Formatting

This is a paragraph with bold text, italic text, and bold italic text. You can also use underscores for bold or single underscores for italics.

This is a paragraph with some inline code using backticks.

Lists

Unordered Lists

  • Item 1
  • Item 2
    • Nested item 2.1
    • Nested item 2.2
  • Item 3

Ordered Lists

  1. First item
  2. Second item
    1. Nested item 2.1
    2. Nested item 2.2
  3. Third item

Links and Images

Link to GitHub

Alt text for an image

Blockquotes

This is a blockquote.

It can span multiple lines.

And can be nested.

Code Blocks

def hello_world():
    print("Hello, world!")

# This is a Python code block with syntax highlighting
hello_world()
// JavaScript code block
function helloWorld() {
  console.log("Hello, world!");
}

Tables

Header 1Header 2Header 3
Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6
Cell 7Cell 8Cell 9

Horizontal Rules




Task Lists

  • Completed task
  • Incomplete task
  • Another completed task

Math (if supported)

Inline math: $E = mc^2$

Block math:

$$ \frac{d}{dx}e^x = e^x $$

Footnotes

Here's a sentence with a footnote reference.

Definition Lists

Term 1 : Definition 1

Term 2 : Definition 2a : Definition 2b

Special Characters & Escaping

*This text is surrounded by asterisks but not italicized*

Advanced Formatting

Emoji (if supported)

:smile: :heart: :thumbsup:

Final Notes

This document demonstrates various Markdown formatting features. Compatibility may vary across different Markdown renderers and platforms.

Footnotes

  1. This is the footnote content.