MDX Hello World Showcase

This page demonstrates various MDX components and syntax to help you understand MDX parsing.

Text Formatting

You can use italic, bold, and bold italic text.

You can also use strikethrough and inline code.

Here's a link to MDX documentation.

Lists

Unordered list:

  • Item 1
  • Item 2
    • Subitem 2.1
    • Subitem 2.2
  • Item 3

Ordered list:

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

Blockquotes

This is a blockquote. It can span multiple lines.

Code Blocks

Inline code: console.log("Hello, MDX!");

JavaScript code block:

const greeting = "Hello, MDX!";
console.log(greeting);

Python code block:

print("Hello, MDX!")

Tables

FeatureSupportedExample
TablesYesThis table
CodeYescode
MathYesE=mc2E = mc^2

Task Lists

  • Learn MDX basics
  • Master advanced MDX concepts
  • Build an MDX-powered website

Horizontal Rule


Math Equations

y=mx+by = mx + b

Footnotes

Here's a sentence with a footnote.1

Conclusion

This page showcases various MDX components and syntax. Happy MDX parsing!

Footnotes

  1. This is the footnote content.