├── .eslintrc.js ├── .github └── demo.gif ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── index.html ├── make.js ├── package.json ├── src ├── app.js ├── index.html └── main.js └── stencila.sublime-project /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/.github/demo.gif -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/index.html -------------------------------------------------------------------------------- /make.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/make.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/package.json -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/src/app.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/src/main.js -------------------------------------------------------------------------------- /stencila.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/desktop/HEAD/stencila.sublime-project --------------------------------------------------------------------------------