├── .gitignore ├── .npmignore ├── Cakefile ├── LICENSE ├── README ├── bin └── docco ├── docco.js ├── docco.litcoffee ├── index.html ├── package.json └── resources ├── classic ├── docco.css ├── docco.jst └── public │ ├── fonts │ ├── aller-bold.eot │ ├── aller-bold.ttf │ ├── aller-bold.woff │ ├── aller-light.eot │ ├── aller-light.ttf │ ├── aller-light.woff │ ├── fleurons.eot │ ├── fleurons.ttf │ ├── fleurons.woff │ ├── roboto-black.eot │ ├── roboto-black.ttf │ └── roboto-black.woff │ ├── images │ └── gray.png │ └── stylesheets │ └── normalize.css ├── languages.json ├── linear ├── docco.css ├── docco.jst └── public │ ├── fonts │ ├── aller-bold.eot │ ├── aller-bold.ttf │ ├── aller-bold.woff │ ├── aller-light.eot │ ├── aller-light.ttf │ ├── aller-light.woff │ ├── fleurons.eot │ ├── fleurons.ttf │ ├── fleurons.woff │ ├── roboto-black.eot │ ├── roboto-black.ttf │ └── roboto-black.woff │ ├── images │ └── gray.png │ └── stylesheets │ └── normalize.css ├── parallel ├── docco.css ├── docco.jst └── public │ ├── fonts │ ├── aller-bold.eot │ ├── aller-bold.ttf │ ├── aller-bold.woff │ ├── aller-light.eot │ ├── aller-light.ttf │ ├── aller-light.woff │ ├── roboto-black.eot │ ├── roboto-black.ttf │ └── roboto-black.woff │ └── stylesheets │ └── normalize.css └── plain-markdown ├── README.md └── docco.jst /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | output 3 | docs 4 | node_modules 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .git* 3 | Cakefile 4 | docco.litcoffee 5 | index.html 6 | -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/Cakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/README -------------------------------------------------------------------------------- /bin/docco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/bin/docco -------------------------------------------------------------------------------- /docco.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/docco.js -------------------------------------------------------------------------------- /docco.litcoffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/docco.litcoffee -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/package.json -------------------------------------------------------------------------------- /resources/classic/docco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/docco.css -------------------------------------------------------------------------------- /resources/classic/docco.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/docco.jst -------------------------------------------------------------------------------- /resources/classic/public/fonts/aller-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/public/fonts/aller-bold.eot -------------------------------------------------------------------------------- /resources/classic/public/fonts/aller-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/public/fonts/aller-bold.ttf -------------------------------------------------------------------------------- /resources/classic/public/fonts/aller-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/public/fonts/aller-bold.woff -------------------------------------------------------------------------------- /resources/classic/public/fonts/aller-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/public/fonts/aller-light.eot -------------------------------------------------------------------------------- /resources/classic/public/fonts/aller-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/public/fonts/aller-light.ttf -------------------------------------------------------------------------------- /resources/classic/public/fonts/aller-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/public/fonts/aller-light.woff -------------------------------------------------------------------------------- /resources/classic/public/fonts/fleurons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/public/fonts/fleurons.eot -------------------------------------------------------------------------------- /resources/classic/public/fonts/fleurons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/public/fonts/fleurons.ttf -------------------------------------------------------------------------------- /resources/classic/public/fonts/fleurons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/public/fonts/fleurons.woff -------------------------------------------------------------------------------- /resources/classic/public/fonts/roboto-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/public/fonts/roboto-black.eot -------------------------------------------------------------------------------- /resources/classic/public/fonts/roboto-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/public/fonts/roboto-black.ttf -------------------------------------------------------------------------------- /resources/classic/public/fonts/roboto-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/public/fonts/roboto-black.woff -------------------------------------------------------------------------------- /resources/classic/public/images/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/public/images/gray.png -------------------------------------------------------------------------------- /resources/classic/public/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/classic/public/stylesheets/normalize.css -------------------------------------------------------------------------------- /resources/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/languages.json -------------------------------------------------------------------------------- /resources/linear/docco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/docco.css -------------------------------------------------------------------------------- /resources/linear/docco.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/docco.jst -------------------------------------------------------------------------------- /resources/linear/public/fonts/aller-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/public/fonts/aller-bold.eot -------------------------------------------------------------------------------- /resources/linear/public/fonts/aller-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/public/fonts/aller-bold.ttf -------------------------------------------------------------------------------- /resources/linear/public/fonts/aller-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/public/fonts/aller-bold.woff -------------------------------------------------------------------------------- /resources/linear/public/fonts/aller-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/public/fonts/aller-light.eot -------------------------------------------------------------------------------- /resources/linear/public/fonts/aller-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/public/fonts/aller-light.ttf -------------------------------------------------------------------------------- /resources/linear/public/fonts/aller-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/public/fonts/aller-light.woff -------------------------------------------------------------------------------- /resources/linear/public/fonts/fleurons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/public/fonts/fleurons.eot -------------------------------------------------------------------------------- /resources/linear/public/fonts/fleurons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/public/fonts/fleurons.ttf -------------------------------------------------------------------------------- /resources/linear/public/fonts/fleurons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/public/fonts/fleurons.woff -------------------------------------------------------------------------------- /resources/linear/public/fonts/roboto-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/public/fonts/roboto-black.eot -------------------------------------------------------------------------------- /resources/linear/public/fonts/roboto-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/public/fonts/roboto-black.ttf -------------------------------------------------------------------------------- /resources/linear/public/fonts/roboto-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/public/fonts/roboto-black.woff -------------------------------------------------------------------------------- /resources/linear/public/images/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/public/images/gray.png -------------------------------------------------------------------------------- /resources/linear/public/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/linear/public/stylesheets/normalize.css -------------------------------------------------------------------------------- /resources/parallel/docco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/parallel/docco.css -------------------------------------------------------------------------------- /resources/parallel/docco.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/parallel/docco.jst -------------------------------------------------------------------------------- /resources/parallel/public/fonts/aller-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/parallel/public/fonts/aller-bold.eot -------------------------------------------------------------------------------- /resources/parallel/public/fonts/aller-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/parallel/public/fonts/aller-bold.ttf -------------------------------------------------------------------------------- /resources/parallel/public/fonts/aller-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/parallel/public/fonts/aller-bold.woff -------------------------------------------------------------------------------- /resources/parallel/public/fonts/aller-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/parallel/public/fonts/aller-light.eot -------------------------------------------------------------------------------- /resources/parallel/public/fonts/aller-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/parallel/public/fonts/aller-light.ttf -------------------------------------------------------------------------------- /resources/parallel/public/fonts/aller-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/parallel/public/fonts/aller-light.woff -------------------------------------------------------------------------------- /resources/parallel/public/fonts/roboto-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/parallel/public/fonts/roboto-black.eot -------------------------------------------------------------------------------- /resources/parallel/public/fonts/roboto-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/parallel/public/fonts/roboto-black.ttf -------------------------------------------------------------------------------- /resources/parallel/public/fonts/roboto-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/parallel/public/fonts/roboto-black.woff -------------------------------------------------------------------------------- /resources/parallel/public/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/parallel/public/stylesheets/normalize.css -------------------------------------------------------------------------------- /resources/plain-markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/plain-markdown/README.md -------------------------------------------------------------------------------- /resources/plain-markdown/docco.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/docco/HEAD/resources/plain-markdown/docco.jst --------------------------------------------------------------------------------