Back to FAQ

What is markdown format?

Learn about Markdown format and how it works.

What is Markdown Format?

Markdown format refers to the syntax and structure used in Markdown files to create formatted text. It uses simple text characters to indicate formatting, which are then converted to styled HTML or other formats.

Common Formatting Elements

  • Headings: # for H1, ## for H2, etc.
  • Bold: **text** or __text__
  • Italic: *text* or _text_
  • Lists: - for unordered, 1. for ordered
  • Links: [text](url)
  • Code: `code` for inline, ``` for blocks