Editor
Markdown
The default format of Textosan is markdown. When using the editor there is a toolbar at the top of the document showing a variety of formatting tools. You can, however, also write markdown syntax directly into the editor and have it be correctly formatted. Textosan supports GFM markdown and a few extra additions out of the box.
To read more about markdown format check out this link.
Here is a quick list of a few common syntaxes you can use in Textosan:
Syntax | Result |
---|---|
# Heading 1 | Heading 1 |
## Heading 2 | Heading 2 |
### Heading 3 | Heading 3 |
#### Heading 4 | Heading 4 |
##### Heading 5 | Heading 5 |
_italic_ | Italic |
**bold** | Bold |
~~strike~~ | Strikethrough |
==highlighted== | Highlighted |
- List item | Unordered List item |
1. List item | Ordered List item |
> Quote | Quote |
```(new line)``` | Code block |
By typing this syntax into the editor the text will be formatted according to the table above.