├── .gitignore ├── LICENSE ├── README.md ├── borders.js ├── copy-template.js ├── example.html ├── example.js ├── example2.js ├── example3.js ├── ogilvy-ambry.txt ├── package.json └── workbook.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobi/workbook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobi/workbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobi/workbook/HEAD/README.md -------------------------------------------------------------------------------- /borders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobi/workbook/HEAD/borders.js -------------------------------------------------------------------------------- /copy-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobi/workbook/HEAD/copy-template.js -------------------------------------------------------------------------------- /example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobi/workbook/HEAD/example.html -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobi/workbook/HEAD/example.js -------------------------------------------------------------------------------- /example2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobi/workbook/HEAD/example2.js -------------------------------------------------------------------------------- /example3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobi/workbook/HEAD/example3.js -------------------------------------------------------------------------------- /ogilvy-ambry.txt: -------------------------------------------------------------------------------- 1 | open /tmp/ogilvy.xlsx 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobi/workbook/HEAD/package.json -------------------------------------------------------------------------------- /workbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protobi/workbook/HEAD/workbook.js --------------------------------------------------------------------------------