Markdown and HTML Features
These features are part of 👉 standard MDX syntax as used by Docusaurus by default.
Standard features
All standard features you would expect from Markdown
are available 👉 here as well.

Code blocks
A simple code block:
def greet():
print("Hello, world!")
A code block with line numbers and a highlighted section:
<html>
<body>
<h1>My first website</h1>
<div>
<span>This is my first website!</span>
</div>
</body>
</html>
Blockquotes
Thou dost snore distinctly.
— Shakespeare, William. The Tempest. 2.1.244-245.
There’s meaning in thy snores.
Footnotes
Footnotes1 are a great2 way to move additional information to the bottom of the page.3
Tables
First name | Middle name | Last Name |
---|---|---|
Jon | DeLorean | Doe |
Jane | Charlie | Jefferson |
Billy | Beanbag | Bumblebee IV. |
Details
Toggle to see more...
Details can even be nested...
Footnotes
-
"Footnotes are notes at the foot of the page [...]". (👉 Wikipedia) ↩
-
great (adj.): 1. notably large in size. 3. remarkable in magnitude, degree, or effectiveness. (👉 Merriam-Webster) ↩
-
An especially useful feature of the way MDX handles footnotes is that you don't need to ensure a continuous enumeration. Additionally, you can define your footnotes right where you reference them, and they will still be placed at the end of the page. ↩