Skip to main content

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:

✏️ Edit Markdown Here:

👁️ Live Preview:

Welcome to Markdown!



Getting Started


This is a bold statement and this is italic text.

Lists


  • First item

  • Second item

  • Third item


  • Code


    Here's some inline code and a code block:

    `javascript
    function hello() {
    console.log("Hello, world!");
    }
    `

    Links


    Visit Docusaurus

    This is a blockquote. Great for highlighting important information!

    Common Markdown Syntax:

    • # Heading 1, ## Heading 2, ### Heading 3
    • **bold text** and *italic text*
    • [link text](url) for links
    • ![alt text](image-url) for images
    • `inline code` and ```language for code blocks
    • - item or 1. item for lists
    • > text for blockquotes

    For advanced Markdown features, visit the Docusaurus tutorial section or Docusaurus Markdown Features.