markdown cheat sheet pdf code example
Example 1: h1 markdown
# H1
## H2
### H3
#### H4
##### H5
###### H6
Example 2: markdown cheat sheet
| CRUD | HTTP method | Path | Description | Mongoose methods |
|-------- |------------- |----------- |---------------- |----------------------------------- |
| Read | GET | /cats | get all cats | Cat.find( ) |
| Read | GET | /cats/:id | get one cat | Cat.find({_id:id}) |
| Create | POST | /cats | create one cat | new Cat( ) .save( ) |
| Delete | DELETE | /cats/:id | Delete one cat | Cat.findAndDelete |
| Update | PUT | /cats/:id | Update one cat | Cat.find (make changes).save |
| | | | | Cat is the Mongoose model |