├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── lib ├── github-light.css └── github-light.map.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | *.log 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/github-syntax-light/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/github-syntax-light/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/github-syntax-light/HEAD/index.js -------------------------------------------------------------------------------- /lib/github-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/github-syntax-light/HEAD/lib/github-light.css -------------------------------------------------------------------------------- /lib/github-light.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/github-syntax-light/HEAD/lib/github-light.map.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/github-syntax-light/HEAD/package.json --------------------------------------------------------------------------------