Markdown Rendering Test

Can you explain markdown formatting?

Markdown Formatting Guide

Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents.

Basic Syntax

Headers

You can create headers using the # symbol:

# Header 1
## Header 2
### Header 3

Emphasis

You can make text italic using *asterisks* or _underscores_.

You can make text bold using **double asterisks** or __double underscores__.

Lists

Unordered lists use asterisks, pluses, or hyphens:

Ordered lists use numbers:

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

Links

You can create links using [text](URL).

Code

Inline code uses backticks: code

Code blocks use triple backticks:

function example() {
  console.log("Hello, world!");
}

Blockquotes

This is a blockquote. You can use the > symbol to create one.

Tables

Header 1 Header 2
Cell 1 Cell 2
Cell 3 Cell 4