Markdown Rendering Test

12th Dec 2024

Markdown Rendering Test

Subheading: Lists and Formatting

This is a bold text and an italic text.

Ordered List:

  1. First item
  2. Second item
  3. Third item with bold text

Unordered List:

Subheading: Math Expressions

Here’s an inline math expression: E=mc2E = mc^2.

A block math expression:

abf(x)dx=F(b)F(a)\int_a^b f(x) dx = F(b) - F(a)

Subheading: HTML Content

Here is some raw HTML content:

This is a red div

Subheading: Blockquote and Code Block

This is a blockquote. It’s used to highlight quoted text.

Code block for JavaScript:

function add(a, b) {
  return a + b;
}