-
Notifications
You must be signed in to change notification settings - Fork 45
Markdown Notes
It is possible to use Markdown syntax to add some styling and formatting to password notes. This page shows and explains the markdown syntax available for the notes.
⭐ Some apps don't support markdown styling for notes and will show plain text instead
Text can be formatted as bold by adding two **
before and after the text.
If more than one line should be bold, every line needs to marked separately.
**BOLD**
**
This
doesn't
work
**
BOLD
** This doesn't work **
Text can be formatted as italic by adding underscores (_
) before and after the text.
If more than one line should be bold, every line needs to marked separately.
_ITALIC_
_
This
doesn't
work
_
ITALIC
_ This doesn't work _
Text can be formatted as quote or blockquote by adding a >
at the beginning of the line.
You need to have at least ony empty line after a quote, otherwise the following text will still be formatted as quote.
> First line of
quoted text
> Second line
Not quoted text
First line of quoted text Second line
Not quoted text
It is possible to format text as code block.
```
Code
```
Code
It is possible to add six different levels of headlines by adding #
at the beginning of the line.
The more #
, the smaller the resulting headline.
# H1
## H2
### H3
#### H4
##### H5
###### H6