2014-11-27 22:54:24 +08:00
# github-markdown-css
2014-05-08 02:02:46 +08:00
> The minimal amount of CSS to replicate the GitHub Markdown style
2014-11-27 23:20:18 +08:00
[<img src="https://cloud.githubusercontent.com/assets/170270/5219062/f22a978c-7685-11e4-8316-af25b6c89bc0.png" width="300"> ](http://sindresorhus.com/github-markdown-css )
2014-05-08 02:02:46 +08:00
## [Demo](http://sindresorhus.com/github-markdown-css)
## Install
Download [manually ](https://raw.githubusercontent.com/sindresorhus/github-markdown-css/gh-pages/github-markdown.css ) or with a package-manager.
```sh
$ npm install --save github-markdown-css
```
```sh
$ bower install --save github-markdown-css
```
## Usage
2014-05-08 03:17:18 +08:00
Import the `github-markdown.css` file and add a `markdown-body` class to the container of your rendered Markdown and set a width for it. GitHub uses `790px` width and `30px` padding.
2014-05-08 02:02:46 +08:00
```html
< link rel = "stylesheet" href = "github-markdown.css" >
< style >
.markdown-body {
2014-05-08 03:17:18 +08:00
min-width: 200px;
max-width: 790px;
margin: 0 auto;
padding: 30px;
2014-05-08 02:02:46 +08:00
}
< / style >
< article class = "markdown-body" >
< h1 > Unicorns< / h1 >
< p > All the things< / p >
2014-07-30 15:19:12 +08:00
< / article >
2014-05-08 02:02:46 +08:00
```
2014-11-27 22:54:24 +08:00
## How
2014-05-08 02:02:46 +08:00
2014-11-27 22:54:24 +08:00
See [`generate-github-markdown-css` ](https://github.com/sindresorhus/generate-github-markdown-css ) for how it's generated and ability to generate your own.
2014-05-08 02:02:46 +08:00
2014-11-27 22:54:24 +08:00
## Dev
2014-05-08 02:02:46 +08:00
2014-11-27 22:54:24 +08:00
Run `npm run generate` to update the CSS.
2014-05-08 02:02:46 +08:00
## License
MIT © [Sindre Sorhus ](http://sindresorhus.com )