Documently / Markdown syntax
Reading time Reading time 1
Last modification 04/10/2025

Markdown Syntax

Documently.io supports essential Markdown syntax commonly used in text editing. The paid version includes additional features. Below is an overview of the basic syntax:

Basic Syntax

  • Bold: Makes the selected text bold.
**bold text**
  • Italic: Makes the text italicized.
*italic text*
  • Headings: Denote article headings from level 1 to 6. Example:
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
  • Link : Creates a hyperlink:
[Tekst alternatywny](https://example.com)
  • Embeds an image.
![Kotek](https://example.com/sciezka/do/pliku.jpg)
  • Ordered List: Formats text into a numbered list, maintaining the sequence. Example:

    1. First item
       1. Sub-item 1
       1. Sub-item 2
    1. Second item
    1. Third item
    

This generates:

  1. First item

    1. Sub-item 1
    2. Sub-item 2
  2. Second item

  3. Third item

  • Code Block: Formats a selected fragment into a separate section to emphasize its content. Example:
```
$variable = 1;
```

This renders as:

$variable = 1;