├── .babelrc ├── .eslintrc.json ├── .gitignore ├── .jsdoc.json ├── .npmignore ├── .prettierrc.json ├── .travis.yml ├── LICENSE ├── Parsers ├── README.md ├── brat.js ├── components │ ├── Label.js │ ├── Link.js │ ├── LongLabel.js │ └── Token.js └── odin.js ├── README.md ├── __mocks__ └── svg.draggable.js.js ├── demo ├── bootstrap-colorpicker.min.js ├── data │ ├── example1.ann │ ├── example2.ann │ ├── example3.ann │ ├── paragraph-1-odin.json │ ├── passage-1-odin.json │ ├── passage-2-odin.json │ ├── sentence-1-odin.json │ ├── sentence-2-odin.json │ ├── sentence-3-odin.json │ ├── test-brat.ann │ └── test-odin.json ├── demo.min.css ├── demo.min.css.map ├── demo.min.js ├── index.html ├── server.js ├── src │ ├── demo.js │ ├── demo.scss │ └── taxonomy.hbs └── taxonomy.yml ├── dist └── tag │ ├── css │ ├── tag.css │ ├── tag.css.map │ ├── tag.min.css │ └── tag.min.css.map │ └── js │ ├── tag.js │ └── tag.min.js ├── docs ├── Config.html ├── Handle.html ├── Label.html ├── Link.html ├── Main.html ├── Row.html ├── RowManager.html ├── Word.html ├── WordCluster.html ├── WordTag.html ├── components_link.js.html ├── components_row.js.html ├── components_word-cluster.js.html ├── components_word-tag.js.html ├── components_word.js.html ├── config.js.html ├── figs │ ├── OneRow.png │ ├── TwoRows.png │ ├── taxonomyColors.png │ └── trees.png ├── fonts │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold-webfont.svg │ ├── OpenSans-Bold-webfont.woff │ ├── OpenSans-BoldItalic-webfont.eot │ ├── OpenSans-BoldItalic-webfont.svg │ ├── OpenSans-BoldItalic-webfont.woff │ ├── OpenSans-Italic-webfont.eot │ ├── OpenSans-Italic-webfont.svg │ ├── OpenSans-Italic-webfont.woff │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-LightItalic-webfont.eot │ ├── OpenSans-LightItalic-webfont.svg │ ├── OpenSans-LightItalic-webfont.woff │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ ├── OpenSans-Regular-webfont.woff │ ├── OpenSans-Semibold-webfont.eot │ ├── OpenSans-Semibold-webfont.svg │ ├── OpenSans-Semibold-webfont.ttf │ ├── OpenSans-Semibold-webfont.woff │ ├── OpenSans-SemiboldItalic-webfont.eot │ ├── OpenSans-SemiboldItalic-webfont.svg │ ├── OpenSans-SemiboldItalic-webfont.ttf │ └── OpenSans-SemiboldItalic-webfont.woff ├── global.html ├── icons │ ├── home.svg │ └── search.svg ├── index.html ├── main.js.html ├── managers_rowmanager.js.html ├── managers_taxonomy.js.html ├── managers_tooltip.js.html ├── module-Util.html ├── scripts │ ├── linenumber.js │ └── pagelocation.js ├── styles │ ├── collapse.css │ ├── jsdoc-default.css │ ├── prettify-jsdoc.css │ └── prettify-tomorrow.css ├── tag.js.html ├── treelayout.js.html └── util.js.html ├── figs ├── OneRow.png ├── TwoRows.png ├── taxonomyColors.png └── trees.png ├── package.json ├── src ├── __tests__ │ ├── __snapshots__ │ │ └── taxonomymanager.test.js.snap │ ├── data │ │ ├── taxonomy.yml │ │ └── test-odin.json │ └── taxonomymanager.test.js ├── css │ └── tag.scss ├── js │ ├── components │ │ ├── link.js │ │ ├── row.js │ │ ├── word-cluster.js │ │ ├── word-tag.js │ │ └── word.js │ ├── config.js │ ├── main.js │ ├── managers │ │ ├── labelmanager.js │ │ ├── rowmanager.js │ │ ├── taxonomy.js │ │ └── tooltip.js │ ├── tag.js │ ├── treelayout.js │ └── util.js └── jsdoc-template │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── publish.js │ ├── static │ ├── fonts │ │ ├── OpenSans-Bold-webfont.eot │ │ ├── OpenSans-Bold-webfont.svg │ │ ├── OpenSans-Bold-webfont.woff │ │ ├── OpenSans-BoldItalic-webfont.eot │ │ ├── OpenSans-BoldItalic-webfont.svg │ │ ├── OpenSans-BoldItalic-webfont.woff │ │ ├── OpenSans-Italic-webfont.eot │ │ ├── OpenSans-Italic-webfont.svg │ │ ├── OpenSans-Italic-webfont.woff │ │ ├── OpenSans-Light-webfont.eot │ │ ├── OpenSans-Light-webfont.svg │ │ ├── OpenSans-Light-webfont.woff │ │ ├── OpenSans-LightItalic-webfont.eot │ │ ├── OpenSans-LightItalic-webfont.svg │ │ ├── OpenSans-LightItalic-webfont.woff │ │ ├── OpenSans-Regular-webfont.eot │ │ ├── OpenSans-Regular-webfont.svg │ │ ├── OpenSans-Regular-webfont.woff │ │ ├── OpenSans-Semibold-webfont.eot │ │ ├── OpenSans-Semibold-webfont.svg │ │ ├── OpenSans-Semibold-webfont.ttf │ │ ├── OpenSans-Semibold-webfont.woff │ │ ├── OpenSans-SemiboldItalic-webfont.eot │ │ ├── OpenSans-SemiboldItalic-webfont.svg │ │ ├── OpenSans-SemiboldItalic-webfont.ttf │ │ └── OpenSans-SemiboldItalic-webfont.woff │ ├── icons │ │ ├── home.svg │ │ └── search.svg │ ├── scripts │ │ ├── linenumber.js │ │ └── pagelocation.js │ └── styles │ │ ├── collapse.css │ │ ├── jsdoc-default.css │ │ ├── prettify-jsdoc.css │ │ └── prettify-tomorrow.css │ └── tmpl │ ├── augments.tmpl │ ├── container.tmpl │ ├── details.tmpl │ ├── example.tmpl │ ├── examples.tmpl │ ├── exceptions.tmpl │ ├── layout.tmpl │ ├── mainpage.tmpl │ ├── members.tmpl │ ├── method.tmpl │ ├── params.tmpl │ ├── properties.tmpl │ ├── returns.tmpl │ ├── source.tmpl │ ├── tutorial.tmpl │ └── type.tmpl └── tasksfile.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/.jsdoc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | index.html 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "arrowParens": "always" 3 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/LICENSE -------------------------------------------------------------------------------- /Parsers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/Parsers/README.md -------------------------------------------------------------------------------- /Parsers/brat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/Parsers/brat.js -------------------------------------------------------------------------------- /Parsers/components/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/Parsers/components/Label.js -------------------------------------------------------------------------------- /Parsers/components/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/Parsers/components/Link.js -------------------------------------------------------------------------------- /Parsers/components/LongLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/Parsers/components/LongLabel.js -------------------------------------------------------------------------------- /Parsers/components/Token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/Parsers/components/Token.js -------------------------------------------------------------------------------- /Parsers/odin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/Parsers/odin.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/svg.draggable.js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/__mocks__/svg.draggable.js.js -------------------------------------------------------------------------------- /demo/bootstrap-colorpicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/bootstrap-colorpicker.min.js -------------------------------------------------------------------------------- /demo/data/example1.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/data/example1.ann -------------------------------------------------------------------------------- /demo/data/example2.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/data/example2.ann -------------------------------------------------------------------------------- /demo/data/example3.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/data/example3.ann -------------------------------------------------------------------------------- /demo/data/paragraph-1-odin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/data/paragraph-1-odin.json -------------------------------------------------------------------------------- /demo/data/passage-1-odin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/data/passage-1-odin.json -------------------------------------------------------------------------------- /demo/data/passage-2-odin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/data/passage-2-odin.json -------------------------------------------------------------------------------- /demo/data/sentence-1-odin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/data/sentence-1-odin.json -------------------------------------------------------------------------------- /demo/data/sentence-2-odin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/data/sentence-2-odin.json -------------------------------------------------------------------------------- /demo/data/sentence-3-odin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/data/sentence-3-odin.json -------------------------------------------------------------------------------- /demo/data/test-brat.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/data/test-brat.ann -------------------------------------------------------------------------------- /demo/data/test-odin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/data/test-odin.json -------------------------------------------------------------------------------- /demo/demo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/demo.min.css -------------------------------------------------------------------------------- /demo/demo.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/demo.min.css.map -------------------------------------------------------------------------------- /demo/demo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/demo.min.js -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/server.js -------------------------------------------------------------------------------- /demo/src/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/src/demo.js -------------------------------------------------------------------------------- /demo/src/demo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/src/demo.scss -------------------------------------------------------------------------------- /demo/src/taxonomy.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/src/taxonomy.hbs -------------------------------------------------------------------------------- /demo/taxonomy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/demo/taxonomy.yml -------------------------------------------------------------------------------- /dist/tag/css/tag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/dist/tag/css/tag.css -------------------------------------------------------------------------------- /dist/tag/css/tag.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/dist/tag/css/tag.css.map -------------------------------------------------------------------------------- /dist/tag/css/tag.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/dist/tag/css/tag.min.css -------------------------------------------------------------------------------- /dist/tag/css/tag.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/dist/tag/css/tag.min.css.map -------------------------------------------------------------------------------- /dist/tag/js/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/dist/tag/js/tag.js -------------------------------------------------------------------------------- /dist/tag/js/tag.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/dist/tag/js/tag.min.js -------------------------------------------------------------------------------- /docs/Config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/Config.html -------------------------------------------------------------------------------- /docs/Handle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/Handle.html -------------------------------------------------------------------------------- /docs/Label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/Label.html -------------------------------------------------------------------------------- /docs/Link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/Link.html -------------------------------------------------------------------------------- /docs/Main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/Main.html -------------------------------------------------------------------------------- /docs/Row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/Row.html -------------------------------------------------------------------------------- /docs/RowManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/RowManager.html -------------------------------------------------------------------------------- /docs/Word.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/Word.html -------------------------------------------------------------------------------- /docs/WordCluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/WordCluster.html -------------------------------------------------------------------------------- /docs/WordTag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/WordTag.html -------------------------------------------------------------------------------- /docs/components_link.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/components_link.js.html -------------------------------------------------------------------------------- /docs/components_row.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/components_row.js.html -------------------------------------------------------------------------------- /docs/components_word-cluster.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/components_word-cluster.js.html -------------------------------------------------------------------------------- /docs/components_word-tag.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/components_word-tag.js.html -------------------------------------------------------------------------------- /docs/components_word.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/components_word.js.html -------------------------------------------------------------------------------- /docs/config.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/config.js.html -------------------------------------------------------------------------------- /docs/figs/OneRow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/figs/OneRow.png -------------------------------------------------------------------------------- /docs/figs/TwoRows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/figs/TwoRows.png -------------------------------------------------------------------------------- /docs/figs/taxonomyColors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/figs/taxonomyColors.png -------------------------------------------------------------------------------- /docs/figs/trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/figs/trees.png -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-LightItalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Semibold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Semibold-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Semibold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Semibold-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Semibold-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-Semibold-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-SemiboldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-SemiboldItalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-SemiboldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-SemiboldItalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-SemiboldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-SemiboldItalic-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/OpenSans-SemiboldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/fonts/OpenSans-SemiboldItalic-webfont.woff -------------------------------------------------------------------------------- /docs/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/global.html -------------------------------------------------------------------------------- /docs/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/icons/home.svg -------------------------------------------------------------------------------- /docs/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/icons/search.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/main.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/main.js.html -------------------------------------------------------------------------------- /docs/managers_rowmanager.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/managers_rowmanager.js.html -------------------------------------------------------------------------------- /docs/managers_taxonomy.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/managers_taxonomy.js.html -------------------------------------------------------------------------------- /docs/managers_tooltip.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/managers_tooltip.js.html -------------------------------------------------------------------------------- /docs/module-Util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/module-Util.html -------------------------------------------------------------------------------- /docs/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/scripts/pagelocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/scripts/pagelocation.js -------------------------------------------------------------------------------- /docs/styles/collapse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/styles/collapse.css -------------------------------------------------------------------------------- /docs/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/styles/jsdoc-default.css -------------------------------------------------------------------------------- /docs/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /docs/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /docs/tag.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/tag.js.html -------------------------------------------------------------------------------- /docs/treelayout.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/treelayout.js.html -------------------------------------------------------------------------------- /docs/util.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/docs/util.js.html -------------------------------------------------------------------------------- /figs/OneRow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/figs/OneRow.png -------------------------------------------------------------------------------- /figs/TwoRows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/figs/TwoRows.png -------------------------------------------------------------------------------- /figs/taxonomyColors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/figs/taxonomyColors.png -------------------------------------------------------------------------------- /figs/trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/figs/trees.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/taxonomymanager.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/__tests__/__snapshots__/taxonomymanager.test.js.snap -------------------------------------------------------------------------------- /src/__tests__/data/taxonomy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/__tests__/data/taxonomy.yml -------------------------------------------------------------------------------- /src/__tests__/data/test-odin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/__tests__/data/test-odin.json -------------------------------------------------------------------------------- /src/__tests__/taxonomymanager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/__tests__/taxonomymanager.test.js -------------------------------------------------------------------------------- /src/css/tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/css/tag.scss -------------------------------------------------------------------------------- /src/js/components/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/js/components/link.js -------------------------------------------------------------------------------- /src/js/components/row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/js/components/row.js -------------------------------------------------------------------------------- /src/js/components/word-cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/js/components/word-cluster.js -------------------------------------------------------------------------------- /src/js/components/word-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/js/components/word-tag.js -------------------------------------------------------------------------------- /src/js/components/word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/js/components/word.js -------------------------------------------------------------------------------- /src/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/js/config.js -------------------------------------------------------------------------------- /src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/js/main.js -------------------------------------------------------------------------------- /src/js/managers/labelmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/js/managers/labelmanager.js -------------------------------------------------------------------------------- /src/js/managers/rowmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/js/managers/rowmanager.js -------------------------------------------------------------------------------- /src/js/managers/taxonomy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/js/managers/taxonomy.js -------------------------------------------------------------------------------- /src/js/managers/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/js/managers/tooltip.js -------------------------------------------------------------------------------- /src/js/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/js/tag.js -------------------------------------------------------------------------------- /src/js/treelayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/js/treelayout.js -------------------------------------------------------------------------------- /src/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/js/util.js -------------------------------------------------------------------------------- /src/jsdoc-template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/CHANGELOG.md -------------------------------------------------------------------------------- /src/jsdoc-template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/LICENSE -------------------------------------------------------------------------------- /src/jsdoc-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/README.md -------------------------------------------------------------------------------- /src/jsdoc-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/package.json -------------------------------------------------------------------------------- /src/jsdoc-template/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/publish.js -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-LightItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-LightItalic-webfont.svg -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Semibold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Semibold-webfont.eot -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Semibold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Semibold-webfont.svg -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Semibold-webfont.ttf -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-Semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-Semibold-webfont.woff -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-SemiboldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-SemiboldItalic-webfont.eot -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-SemiboldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-SemiboldItalic-webfont.svg -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-SemiboldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-SemiboldItalic-webfont.ttf -------------------------------------------------------------------------------- /src/jsdoc-template/static/fonts/OpenSans-SemiboldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/fonts/OpenSans-SemiboldItalic-webfont.woff -------------------------------------------------------------------------------- /src/jsdoc-template/static/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/icons/home.svg -------------------------------------------------------------------------------- /src/jsdoc-template/static/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/icons/search.svg -------------------------------------------------------------------------------- /src/jsdoc-template/static/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/scripts/linenumber.js -------------------------------------------------------------------------------- /src/jsdoc-template/static/scripts/pagelocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/scripts/pagelocation.js -------------------------------------------------------------------------------- /src/jsdoc-template/static/styles/collapse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/styles/collapse.css -------------------------------------------------------------------------------- /src/jsdoc-template/static/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/styles/jsdoc-default.css -------------------------------------------------------------------------------- /src/jsdoc-template/static/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /src/jsdoc-template/static/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/static/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/augments.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/augments.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/container.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/container.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/details.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/details.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/example.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/example.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/examples.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/examples.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/exceptions.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/exceptions.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/layout.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/layout.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/mainpage.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/mainpage.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/members.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/members.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/method.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/method.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/params.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/params.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/properties.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/returns.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/returns.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/source.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/source.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/tutorial.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/tutorial.tmpl -------------------------------------------------------------------------------- /src/jsdoc-template/tmpl/type.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/src/jsdoc-template/tmpl/type.tmpl -------------------------------------------------------------------------------- /tasksfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/TextAnnotationGraphs/HEAD/tasksfile.js --------------------------------------------------------------------------------