Website in active development. Some features & content may be unavailable.

MDX Element Test Suite

February 24, 2025

test.mdx

MDX Test Suite

Test file for MDX importing

Text Formatting

This paragraph demonstrates bold text and italic text. You can also combine bold and italic text.

Headings

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Paragraphs

This is the first paragraph. It should have some space below it.

This is the second paragraph. It should have some space above and below it.

Links

This is an external link to Google

This is an internal link to the projects page

Alt text for an image

Space walk

Blockquotes

This is a blockquote. It should have a left border and italic text.

It can span multiple lines and even have multiple paragraphs.

Tables

Here's a table of retro gaming consoles:

| Console | Company | Release Year | |---------|---------|--------------| | NES | Nintendo | 1985 | | Master System | Sega | 1985 | | Game Boy | Nintendo | 1989 | | Genesis/Mega Drive | Sega | 1988 | | SNES | Nintendo | 1990 |

Lists

Unordered list:

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

Ordered list:

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

Code

Here's some inline code: const radio = "awesome";

And here's a code block:

function retroConsole(name, year) {
  console.log(`The ${name} was released in ${year}.`);
}

retroConsole("NES", 1985);