├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── package.json ├── src ├── config.js ├── etherpad-editor.js ├── index.html ├── index.js ├── plantuml-rendered.js └── style.css └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.7.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexITC/collabuml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexITC/collabuml/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexITC/collabuml/HEAD/package.json -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexITC/collabuml/HEAD/src/config.js -------------------------------------------------------------------------------- /src/etherpad-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexITC/collabuml/HEAD/src/etherpad-editor.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexITC/collabuml/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexITC/collabuml/HEAD/src/index.js -------------------------------------------------------------------------------- /src/plantuml-rendered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexITC/collabuml/HEAD/src/plantuml-rendered.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexITC/collabuml/HEAD/webpack.config.js --------------------------------------------------------------------------------