Markdown Guide for Nextcloud
This manual is for use with Nextcloud and the Nextcloud Notes app.
Emphasis
**bold** *italics* ~~strikethrough~~
Headers
# Big header ## Medium header ### Small header #### Tiny header
Lists
* Generic list item * Generic list item * Generic list item 1. Numbered list item 2. Numbered list item 3. Numbered list item
Links
[Text to display](http://www.domain.xx)
It is possible to use advanced linking functionality, like specifying a target _blank
. Therefore you are allowed to use plain old html tags.
<a href="http://www.domain.xx" target="_blank">Text to display</a>
Quotes
> This is a quote. > It can span multiple lines!
Images
Need to upload an image? Just share a link of an image in your Nextcloud and paste the download URL.

Tables
| Column 1 | Column 2 | Column 3 | | -------- | -------- | -------- | | John | Doe | Male | | Mary | Smith | Female |
Or without aligning the columns:
| Column 1 | Column 2 | Column 3 | | -------- | -------- | -------- | | John | Doe | Male | | Mary | Smith | Female |
Displaying code
`var example = "hello!";`
Or spanning multiple lines:
``` var example = "hello!"; alert(example); ```