├── .gitignore ├── .npmignore ├── Makefile ├── Readme.md ├── bin ├── bottom.html ├── demobox ├── demobox.js ├── get-config.js ├── render-code.js ├── render-file.js ├── render-utils.js ├── render.js ├── themes.js └── top.html ├── demo.md ├── demo.png ├── index.js ├── less ├── colors.js ├── index.less └── theme.less ├── lib ├── codemirror-rx.js ├── index.js └── jsx.js ├── package.json ├── run.js ├── scripts ├── main-demo.js ├── make-themes.js ├── make-themes.py ├── md-gen.js ├── md-top.md └── theme-demo.js └── www ├── demo.css └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/.npmignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/Readme.md -------------------------------------------------------------------------------- /bin/bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/bin/bottom.html -------------------------------------------------------------------------------- /bin/demobox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/bin/demobox -------------------------------------------------------------------------------- /bin/demobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/bin/demobox.js -------------------------------------------------------------------------------- /bin/get-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/bin/get-config.js -------------------------------------------------------------------------------- /bin/render-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/bin/render-code.js -------------------------------------------------------------------------------- /bin/render-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/bin/render-file.js -------------------------------------------------------------------------------- /bin/render-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/bin/render-utils.js -------------------------------------------------------------------------------- /bin/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/bin/render.js -------------------------------------------------------------------------------- /bin/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/bin/themes.js -------------------------------------------------------------------------------- /bin/top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/bin/top.html -------------------------------------------------------------------------------- /demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/demo.md -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/demo.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib') 3 | 4 | -------------------------------------------------------------------------------- /less/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/less/colors.js -------------------------------------------------------------------------------- /less/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/less/index.less -------------------------------------------------------------------------------- /less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/less/theme.less -------------------------------------------------------------------------------- /lib/codemirror-rx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/lib/codemirror-rx.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/lib/jsx.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/package.json -------------------------------------------------------------------------------- /run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/run.js -------------------------------------------------------------------------------- /scripts/main-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/scripts/main-demo.js -------------------------------------------------------------------------------- /scripts/make-themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/scripts/make-themes.js -------------------------------------------------------------------------------- /scripts/make-themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/scripts/make-themes.py -------------------------------------------------------------------------------- /scripts/md-gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/scripts/md-gen.js -------------------------------------------------------------------------------- /scripts/md-top.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/scripts/md-top.md -------------------------------------------------------------------------------- /scripts/theme-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/scripts/theme-demo.js -------------------------------------------------------------------------------- /www/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/www/demo.css -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/demobox/HEAD/www/index.html --------------------------------------------------------------------------------