Just, Markdown Things
Never worry about remembering syntax , cheat sheets are always available
Why Markdown is important?
This modern internet world has got us many features , so that the whole way of reading documentation and articles has been changed . To be able to understand and surf through internet pages a new kind of markup language was evolved and that is Markdown
So,Here is basic cheat sheet for Markdown
File extension for markdown file is >file.md
Headings
As in HTML we have six headings, we have same kind here
# This is Heading 1
## This is Heading 2
### This is Heading 3
#### This is Heading 4
##### This is Heading 5
###### This is Heading 6
Bold and Italic
**text** ---for bold
*text* -- for italic
Blockquote
put an >
space and continue text
> text
Ordered List
number. text
for sub list---> indent a space and repeat
1. one
2. two
1. two-one
2. two-two
Unordered List
It is almost same as ordered list in place of number give -
- one
- two
-two-one
-two-two
Links
To embed any link---> [Title](link address )
[Google](https://www.google.com)
Images
To put an image--->![alternate text](image address)
![logo](web address or local storage address)
To know more visit Markdown
Code snippets
Use back ticks--->, you can find it right above tab key on keyboard three back ticks for multiple lines of code, one for single word