Markdown Cheatsheet
Type This
# Heading 1
## Heading 2
### Heading 3
### Heading 4
##### Heading 5
###### Heading 6
Paragraphs don't require any special symbols or anything.
**This** is how you **bold** text.
*This* is how you *italicize*.
Next is a horizontal line.
---
[url](https://google.com)
![img](https://via.placeholder.com/150)
- This is a list item
- This is another one
1. This is a ordered list
2. This is another list item
- [ ] This is a todo
- [x] This one is done
| This Is a table | Column |
| --------------- | ------ |
| Something | Here |
`console.log("code goes between these marks")`
.```javascript
function orYouCan() {
console.log("do a code block with ticks but exclude the . I used here")
}
.```
> This is how you quote someone
Renders This
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Paragraphs don't require any special symbols or anything.
This is how you bold text.
This is how you italicize.
Next is a horizontal line.
- This is a list item
- This is another one
- This is a ordered list
- This is another list item
- This is a todo
- This one is done
This Is a table | Column |
---|---|
Something | Here |
console.log("code goes between these marks")
function orYouCan() {
console.log("do a code block with ticks but exclude the . I used here")
}
This is how you quote someone