Markdown Docs
What is Markdown?
Markdown was created by John Gruber in 2004 with strong influence from Aaron Schwartz. Markdown goal? To be a lightweight markup language that was easily readable AND easily converted to HTML!
Why VimNotion is Built on Markdown
There are many popular text editors/note takers like Notion, Obsidian, and Inkdrop that embarace Markdown format! Rather than click buttons on navbars or right click for menu options, ***you can create headers, bullets, links or bold, italic, underline
text*** directly in your text with Markdown syntax.
VimNotion is all about flow, so keeping your hands on your keyboard with the ability to move at the speed of your thoughts is what it"s all about.
Markdown Basics
This is the base text.
Two newlines (enter keys) to start a new line. One newline will just continue your paragraph,
so for example, this sentence will still be just one line.
This is the base text.
Two newlines (enter keys) to start a new line. One newline will just continue your paragraph, so for example, this sentence will still be just one line.
# One hashtag followed by a space for a heading 1
## Two hashtags for a heading 2
### ... so on and so forth
One hashtag followed by a space for a heading 1
Two hashtags for a heading 2
... so on and so forth
* a star followed by a space for a bullet list
* second item
* ...
- a star followed by a space for a bullet list
- second item
- ...
1. A number followed by a period followed by a space for an ordered list
2. second item
3. ...
- 1. A number followed by a period followed by a space for an ordered list
- 2. second item
- 3. ...
Bold text with two stars **bolded**, italicize text with one star *italicized*.
Bold text with two stars
bolded, italicize text with one star
italicized.
More Markdown
Link external websites with this bracket/parentheses syntax
[clickable text that will link to](https://vimnotion.com/docs/editor)
Images have similar syntax, but include an '!'

Images have similar syntax, but include an '!'

> For block quotes, use the '>' character
>
> add an emty line for multi-line block quotes
For block quotes, use the '>' character
add an emty line for multi-line block quotes
```javascript
use 3 backticks with the language name for codeblocks
(the language name is optional, but some markdown editors will
have syntax highlighting)
```
use 3 backticks with the language name for codeblocks
(the language name is optional, but some markdown editors will
have syntax highlighting)