A copy-paste reference for writing GitHub Markdown README files.
- Templates → templates.md
- Use sections below as needed
# H1
## H2
### H3*italic*
**bold**
~~strikethrough~~- Item 1
- Item 2
1. First
2. Second[Google](https://google.com)
`code`npm installconsole.log("Hello world");# Project Name
## Description
Short description.
## Installation
npm install
## Usage
Example
## License
MIT# Project Name
## Description
What this project does.
## Features
- Fast
- Simple
- Lightweight
## Installation
git clone <repo>
cd project
npm install
## Usage
npm start
## License
MIT<details>
<summary>Click to expand</summary>
Hidden content here.
</details>| Name | Age |
|------|-----|
| John | 25 |
- [x] Done
- [ ] Not doneMIT