Skip to content

Markdown Notes

Marius David Wieschollek edited this page Mar 9, 2021 · 7 revisions

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

Bold

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.

Example

**BOLD**

**
This
doesn't
work
**

Result

BOLD

** This doesn't work **

Italic

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.

Example

_ITALIC_

_
This
doesn't
work
_

Result

ITALIC

_ This doesn't work _

Quotes

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.

Example

> First line of
quoted text
> Second line

Not quoted text

Result

First line of quoted text Second line

Not quoted text

Code

It is possible to format text as code block.

Example

```
Code
```

Result

Code

Headlines

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.

Example

# H1
## H2
### H3
#### H4
##### H5
###### H6

Result

H1

H2

H3

H4

H5
H6
Clone this wiki locally