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.

-
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:
-
First item
- Sub-item 1
- Sub-item 2
-
Second item
-
Third item
- Code Block: Formats a selected fragment into a separate section to emphasize its content. Example:
```
$variable = 1;
```
This renders as:
$variable = 1;