MDX Components Documentation

1 October 2024

567 words

3 minutes


This page is just a reference for some custom MDX components. These are not the droids you are looking for.

Headings

MDX supports six levels of headings, from h1 to h6. Each heading automatically generates an anchor link for easy referencing.

H1 Heading

H2 Heading

H3 Heading

H4 Heading

H5 Heading
H6 Heading

Code Blocks

Code blocks support syntax highlighting for various languages:

some_file_name.js
function talkToMe() {
    for (let i = 0; i < 10; i++) {
      console.log("Hello, world!")
    }
}
some_file.py
def main():
  print("Hello, world!")

if __name__ == "__main__":
  main()

Inline Code

Here's some in-line code: store := int[]{1, 2, 3}.

Tables

Tables can be created using the custom Table component:

CityCountryTemperature (F)
New YorkUSA55
DelhiIndia80
Buenos AiresArgentina63
BeijingChina82

Images

Images are displayed with rounded corners and are automatically optimized:

An example AVIF image

Blockquotes

This is a blockquote. It can be used to emphasize text or attribute quotes to their sources.

Booyah!

YouTube Embeds

YouTube videos can be easily embedded:

Different types of links are handled automatically:

  1. Internal link to another blog post
  2. Link to a section within this post
  3. External link to Next.js documentation

Non-numerical List

Look at this List:

  • The first item in the list
  • Second item
  • Finally, the final item

Checklist

Todo Tasks:

  • Completed task
  • Incomplete task

LaTeX

This is a block of LaTeX:

ex2dx=π\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}

This is in-line LaTeX: O(nlogn)O(n \log n).

Footnotes

A note1.

Another note2.

Strikethrough

This is strikethrough text.

Callouts

Note

Remember to save your work regularly to avoid losing important changes.

Abstract

This abstract summarizes the key points of the project and its objectives.

Info

The latest version of the software includes important security updates.

Tip

Use keyboard shortcuts to increase your productivity while coding.

Success

Congratulations! Your deployment was successful and everything is running smoothly.

Question

Have you considered testing the new feature with different user scenarios?

Warning

Warning: This action will overwrite existing data. Make sure to back up important information first.

Failure

Oops! Something went wrong during the process. Please try again later or contact support.

Danger

Danger: Unauthorized access detected. Please secure your account and review recent activities.

Bug

We've identified a bug in the system that affects user login. A fix is being developed.

Example

Example: To create a new project, follow these steps: initialize the repository, set up your environment, and start coding.

Quote

“The only limit to our realization of tomorrow is our doubts of today.” – Franklin D. Roosevelt

Mermaid

Mermaid.js allows you to create different versions of charts.

Conclusion

This documentation page demonstrates the various custom MDX components available in this blog setup. Use this as a reference.

Footnotes

  1. Big note.

  2. Another, bigger, note.