All Projects → sindresorhus → Generate Github Markdown Css

sindresorhus / Generate Github Markdown Css

Licence: mit
Generate the CSS for github-markdown-css

Programming Languages

javascript
184084 projects - #8 most used programming language

generate-github-markdown-css

Generate the CSS for github-markdown-css

Get the CSS

See github-markdown-css

How

First a rendered Markdown with all possible syntax is fetched from GitHub. Then the GitHub.com CSS is fetched and both are run through UnCSS, which extracts only the used styles, and then through a custom cleanup.

API

const githubMarkdownCss = require('generate-github-markdown-css');

(async () => {
	console.log(await githubMarkdownCss());
	//=> '.markdown-body { …'
})();

CLI

$ npm install --global generate-github-markdown-css
$ github-markdown-css --help

  Usage
    $ github-markdown-css > <filename>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].