Skip to content

Writing Markdown


Increasing the number of leading hashtags decreases the size of the heading.

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

This is a fill in the blank (in Flotes). This is bold text. This is Italic text. This is bold and italic text

This is a __fill in the blank__ (in Flotes).
This is **bold text**.
This is *Italic text*.
This is ***bold and italic text***

Markdown reserves three different syntax for creating lines. three underscores, three asterisks and three dashes.

___
This is a concealed section in Flotes.
But just two lines in traditional Markdown
___
This is always a line
***

Block quotes indent text

You can nest block quotes

Add blank indents to add paragraphs

> Block quotes indent text
>> You can nest block quotes
>
> Add blank lines to add paragraphs
  1. Write documentation
  2. ???
  3. Profit!!!
1. Write documentation
2. ???
3. Profit!!!
  • This is a list
    • Tab to indent
  • Back to the original depth
- This is a list
- Tab to indent
- Back to the original depth

To create a link wrap the label in brackets and the url in parenthesis

Flotes App

[Flotes App](https://flotes.app)

Video, image, and gif syntax is similar. The difference being an exclamation point at the beginning.

  • The description will be used in the case of a broken image/video.
![Flotes Landing Page](https://ik.imagekit.io/flotes/flotes/big-text-2.png?updatedAt=1748262778505)

Code blocks can be syntax highlighted by adding the language to the first line

const hello = "world"

```javascript

const hello = “world”

```

Flotes enables a special type of syntax for creating Flowcharts with Markdown, called Mermaid.

```mermaid

graph TD;

A[My Node]—>B[My 2nd Node]

```