Welcome to the Markdown Editor Guide! 📝 This page will help you understand how to use our Markdown Editor to create beautiful documents.

Getting Started

Here are some basic elements you can use in Markdown:

  • Headers 🧑‍💻

    • # for H1
    • ## for H2
    • ### for H3
    • and so on...
  • Lists 📋

    • Unordered list: - item1
    • Ordered list: 1. item1
    • You can even mix them!
  • Links 🔗

    • Use [text](url) to create a link.
    • For example, click here to visit our website.
  • Images 🖼️

    • Use ![alt text](image url) to insert an image.
    • For example,
      Markdown

Advanced Features

  • Tables 🔢

    • Use pipes | and hyphens - to create tables.
    • For example:
      | Header 1 | Header 2 |
      |---------|---------|
      | Row 1, Col 1 | Row 1, Col 2 |
      | Row 2, Col 1 | Row 2, Col 2 |
      
  • Code 🌐

    • Use triple backticks ``` to create code blocks.
    • For example, ```python print("Hello, world!")
    
    
  • Emojis 😄

    • Simply type the emoji code to insert an emoji.
    • For example, 😄

Learn More

To learn more about Markdown, check out our Markdown Reference Guide.

Markdown Reference