Skip to Content
🚀✨ DOCS  |  Yay a Banner 😎🎉
DocumentationMarkdown Tutorial

Markdown Tutorial

Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. Below is a comprehensive guide to Markdown syntax.

Headings

Use # for headings:

# Heading 1 ## Heading 2 ### Heading 3

Emphasis

  • Bold: **text**
  • Italic: *text*
  • Strikethrough: ~~text~~

Lists

  • Unordered list:
    • - Item
  • Ordered list:
    • 1. Item

Blockquotes

Use > for blockquotes:

> This is a blockquote.

Code Blocks

Use triple backticks for code blocks:

Code block

Tables

| Column 1 | Column 2 | |----------|----------| | Data 1 | Data 2 |
[Link Text](https://example.com)

Images

![Alt Text](https://example.com/image.png)

That’s it! You’re now ready to write Markdown.