markdown guide cheat sheet code example
Example 1: bold markdown
# Bold
I just love **bold text**.
I just love __bold text__.
Love**is**bold
# Italic
Italicized text is the *cat's meow*.
Italicized text is the _cat's meow_.
A*cat*meow
Example 2: bold in markdown
**This will be bold**
Example 3: 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 |