my awesome post

ByEric Allen
Published
my awesome post

My Awesome MDX Document

Welcome to this comprehensive demonstration of MDX capabilities! This document covers everything from basic text formatting to complex tables and even some JSX components.

Text Formatting

Let’s start with the basics:

  • Bold Text: Use **bold text** or __bold text__.
  • Italic Text: Use *italic text* or _italic text_.
  • Bold and Italic: Use ***bold and italic***.
  • Strikethrough: Use ~~strikethrough~~.
  • Inline Code: Use `inline code`.

Lists

Unordered Lists

  • Item 1
  • Item 2
  • Item 3

Ordered Lists

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

Nested Lists

  • Item 1
    • Sub-item 1
    • Sub-item 2
  • Item 2
    1. Sub-item A
    2. Sub-item B

Here’s a link to Google.

Alt text for image

Blockquotes

This is a blockquote. It can span multiple lines and is useful for highlighting important information or quoting someone.

Code Blocks

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

Horizontal Rule


Tables

Header 1Header 2Header 3
Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6

Headings

Heading 3

Heading 4

Heading 5
Heading 6

MDX Components (Example)

Feel free to add JSX components here. For example:

function MyComponent() {
   return (
   <div>
   <h2>Hello from JSX!</h2>
   <p>This is a simple React component.</p>
   </div>
   );
}
 
 
<MyComponent />

Task Lists

  • Task 1 (completed)
  • Task 2 (incomplete)

Emojis

I love using emojis! 🎉 😄 ✨

Definition Lists

Markdown : A lightweight markup language.

MDX : Markdown + JSX = ❤️

Footnotes

Here is a footnote1.

Conclusion

This document should give you a good overview of the various Markdown and MDX features you can use. Experiment and have fun!

Footnotes

  1. This is the footnote content.