This is a basic guide of what you can do with Markdown. Simply copy and paste the code below into the Noisli text editor and see the resul using the preview mode.
Headings
# Heading level 1 ## Heading level 2 ### Heading level 3 #### Heading level 4 ##### Heading level 5 ###### Heading level 6
Emphasis
Use one *asterisk* or _underscore_ to create emphasis italics. Use two **asterisks** or __underscores__ to create strong emphasis, aka bold. Combine emphasis with **asterisks and _underscores_**. Strikethrough using two tildes ~~strike this~~
Paragraph
A paragraph is simply one or more consecutive lines of text, separated by one or more blank lines. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. This is the second paragraph. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Blockquotes
> This is the first blockquote. > This is another blockquote, and this is the first paragraph. > > And this is the second paragraph. > A blockquote. > >> This is a nested blockquote.
Lines
*** create a line with 2 or more asterisks --- create a line with 2 or more dash ___ create a line with 2 or more underscores
Ordered lists
1. First item 2. Second item 3. Third item 4. Fourth item 1. First item 1. Second item 1. Third item 1. Fourth item 1. First item 2. Second item 3. Third item 1. Indented item 2. Indented item 4. Fourth item
Unordered lists
- First item - Second item - Third item - Fourth item * First item * Second item * Third item * Fourth item - First item - Second item - Third item - Indented item - Indented item - Fourth item
Inline code
You can write inline using back-ticks like this `code`. 4 spaces is also code ``Use `code` in your Markdown file to escape backticks.``
Code blocks
``` Use three back-ticks to create a code block. This is the second line of the code block. ```
Tables
| Header 1 | Header 2 | Value | | ------------- | ----------- | ----- | | row 1 | 1 | 001 | | row 2 | 2 | 002 | | row 3 | 3 | 003 |