Flow360.io Logo

Markdown Syntax

This document covers the basic markdown syntax elements.

Headers

H1 Header

H2 Header

H3 Header

H4 Header

H5 Header
H6 Header

Emphasis

Italic text or italic text

Bold text or bold text

Bold and italic or bold and italic

Strikethrough text

Lists

Unordered Lists

  • Item 1
  • Item 2
    • Nested item 2.1
    • Nested item 2.2
  • Item 3

Or using dashes:

  • Item A
  • Item B
  • Item C

Ordered Lists

  1. First item
  2. Second item
  3. Third item
    1. Nested item 3.1
    2. Nested item 3.2

Images

Alt text here...

Code

Inline Code

Use inline code within text.

Code Blocks

Basic code block
No syntax highlighting
// JavaScript code block
function greet(name) {
  console.log(`Hello, ${name}!`);
}
# Python code block
def greet(name):
    print(f"Hello, {name}!")

Blockquotes

This is a blockquote. It can span multiple lines.

Blockquotes can be nested

Like this

Horizontal Rules




Tables

Header 1Header 2Header 3
Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6

Table Alignment

Left AlignedCenter AlignedRight Aligned
LeftCenterRight
TextTextText

Footnotes

Here's a sentence with a footnote1.

Task Lists

  1. Completed task
  2. Uncompleted task
  3. Another task

Escaping Characters

Use backslash to escape markdown characters:

* Not italic *

# Not a header

Line Breaks

To create a line break, end a line with two or more spaces,
then type return.

Or use an empty line to create a paragraph break.

Footnotes

  1. This is the footnote content.