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:
function talkToMe() {
for (let i = 0; i < 10; i++) {
console.log("Hello, world!")
}
}
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:
City | Country | Temperature (F) |
---|---|---|
New York | USA | 55 |
Delhi | India | 80 |
Buenos Aires | Argentina | 63 |
Beijing | China | 82 |
Images
Images are displayed with rounded corners and are automatically optimized:
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:
Custom Links
Different types of links are handled automatically:
- Internal link to another blog post
- Link to a section within this post
- 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:
This is in-line LaTeX: .
Footnotes
A note1.
Another note2.
Strikethrough
This is strikethrough text.
Callouts
Remember to save your work regularly to avoid losing important changes.
This abstract summarizes the key points of the project and its objectives.
The latest version of the software includes important security updates.
Use keyboard shortcuts to increase your productivity while coding.
Congratulations! Your deployment was successful and everything is running smoothly.
Have you considered testing the new feature with different user scenarios?
Warning: This action will overwrite existing data. Make sure to back up important information first.
Oops! Something went wrong during the process. Please try again later or contact support.
Danger: Unauthorized access detected. Please secure your account and review recent activities.
We've identified a bug in the system that affects user login. A fix is being developed.
Example: To create a new project, follow these steps: initialize the repository, set up your environment, and start coding.
“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.