Skip to content

Instantly share code, notes, and snippets.

@jmhungdev
Last active March 8, 2023 16:08
Show Gist options
  • Save jmhungdev/f70a1d7e6b785fc2d213fb1c770b04c1 to your computer and use it in GitHub Desktop.
Save jmhungdev/f70a1d7e6b785fc2d213fb1c770b04c1 to your computer and use it in GitHub Desktop.
Markdown Syntax
// Heading H1 - H6
# H1
## H2
### H3
###### H6
// Use blank line to create a new paragraph
// Bold text
**here bold text**
__here's bold text__
// Italicized text
*italicized text*
// Block quotes
> start your block quote paragraph
// Block quotes with other elements
> #### The quarterly results look great!
>
> - Revenue was off the chart.
> - Profits were higher than ever.
>
> *Everything* is going according to **plan**.
// Ordered list
1. first item
2. second item
3. third item
// Unordered list
- first item
- second item
- third item
// Inline code block
`code`
// Multiline code block
```
code block
here
```
// link
[text](https://www.google.com)
// Image
![alt text](image.jpg)
// Footnote
Here's a sentence with a footnote. [^1]
[^1]: This is the footnote.
// Strikethrough
~~The world is flat.~~
// Task list
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
// Highlight
I need to highlight these ==very important words==.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment