Quick Markdown Tutorial
Markdown is a simple way to format text, and Docusaurus transforms it into a professional-looking website. Here's an example:
# Heading 1
## Heading 2
### Heading 3
- Heading 2 (
##
) appears in the right-hand sidebar as a table of contents. - Heading 3 (
###
) appears as a sub-item under Heading 2.
Try It Yourself!
Use the interactive editor below to experiment with markdown syntax:
Common Markdown Syntax:
# Heading 1
,## Heading 2
,### Heading 3
**bold text**
and*italic text*
[link text](url)
for links
for images`inline code`
and```language
for code blocks- item
or1. item
for lists> text
for blockquotes
For advanced Markdown features, visit the Docusaurus tutorial section or Docusaurus Markdown Features.