├── .eslintrc.js ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── AUTHORS ├── CHANGELOG.md ├── LICENSE ├── Licenses ├── @hpcc-wasm.LICENSE.md ├── @vscode-codicons.LICENSE.md ├── @vscode-webview-ui-toolkit.LICENSE.md ├── d3-graphviz.LICENSE.md ├── jquery-color.LICENSE.md ├── jquery.LICENSE.md └── jquery.graphviz.svg.LICENSE.md ├── README.md ├── content ├── graphvizSvg │ └── jquery.graphviz.svg.js ├── highlighting.js ├── icon.png ├── index.html ├── save.js ├── search.js └── toolbar │ ├── jquery.toolbar.css │ └── jquery.toolbar.min.js ├── dot ├── dot.configuration.json ├── snippets │ ├── package.json │ └── snippets │ │ └── dot.json └── syntaxes │ └── dot.tmLanguage ├── images ├── icon.png └── shapes │ ├── Mcircle.gif │ ├── Mdiamond.gif │ ├── Msquare.gif │ ├── assembly.gif │ ├── box.gif │ ├── box3d.gif │ ├── cds.gif │ ├── circle.gif │ ├── component.gif │ ├── cylinder.gif │ ├── diamond.gif │ ├── doublecircle.gif │ ├── doubleoctagon.gif │ ├── egg.gif │ ├── ellipse.gif │ ├── fivepoverhang.gif │ ├── folder.gif │ ├── hexagon.gif │ ├── house.gif │ ├── insulator.gif │ ├── invhouse.gif │ ├── invtrapezium.gif │ ├── invtriangle.gif │ ├── larrow.gif │ ├── lpromoter.gif │ ├── none.gif │ ├── note.gif │ ├── noverhang.gif │ ├── octagon.gif │ ├── oval.gif │ ├── parallelogram.gif │ ├── pentagon.gif │ ├── plain.gif │ ├── plaintext.gif │ ├── point.gif │ ├── polygon.gif │ ├── primersite.gif │ ├── promoter.gif │ ├── proteasesite.gif │ ├── proteinstab.gif │ ├── rarrow.gif │ ├── rect.gif │ ├── rectangle.gif │ ├── restrictionsite.gif │ ├── ribosite.gif │ ├── rnastab.gif │ ├── rpromoter.gif │ ├── septagon.gif │ ├── signature.gif │ ├── square.gif │ ├── star.gif │ ├── tab.gif │ ├── terminator.gif │ ├── threepoverhang.gif │ ├── trapezium.gif │ ├── triangle.gif │ ├── tripleoctagon.gif │ ├── underline.gif │ └── utr.gif ├── package.json ├── scripts ├── language │ └── documentation │ │ ├── attributes.xml │ │ └── generator.js └── updateDependencies.js ├── src ├── extension.ts ├── features │ ├── interactiveWebview.ts │ └── previewPanel.ts ├── language │ ├── ColorProvider.ts │ ├── CompletionItemProvider.ts │ ├── DocumentFormatter.ts │ ├── DotParser.ts │ ├── HoverProvider.ts │ ├── SymbolDefinition.ts │ ├── SymbolProvider.ts │ ├── definitions │ │ ├── arrowType.ts │ │ ├── attributelist.ts │ │ ├── colors.ts │ │ ├── dirType.ts │ │ ├── nodeShapes.ts │ │ └── style.ts │ ├── diagnosticCollection.ts │ ├── documentation │ │ └── .gitkeep │ └── getAttributeDetail.ts ├── prepareHTML.ts └── settings.ts ├── test └── corpi │ ├── 109_formatterOptions.dot │ ├── 110_autoFormatter.dot │ ├── 111_html_label_formatting.dot │ ├── 115_background.dot │ ├── 12_multiplePaths.dot │ ├── 25_ports.dot │ ├── 36_large.dot │ ├── 50_clusters.dot │ ├── a.dot │ ├── differentNodeTypes.dot │ ├── example1.dot │ ├── example2.dot │ ├── example3.dot │ ├── example4.dot │ └── goImport.dot ├── tsconfig.json └── webpack.config.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/.vscodeignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/LICENSE -------------------------------------------------------------------------------- /Licenses/@hpcc-wasm.LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/Licenses/@hpcc-wasm.LICENSE.md -------------------------------------------------------------------------------- /Licenses/@vscode-codicons.LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/Licenses/@vscode-codicons.LICENSE.md -------------------------------------------------------------------------------- /Licenses/@vscode-webview-ui-toolkit.LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/Licenses/@vscode-webview-ui-toolkit.LICENSE.md -------------------------------------------------------------------------------- /Licenses/d3-graphviz.LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/Licenses/d3-graphviz.LICENSE.md -------------------------------------------------------------------------------- /Licenses/jquery-color.LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/Licenses/jquery-color.LICENSE.md -------------------------------------------------------------------------------- /Licenses/jquery.LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/Licenses/jquery.LICENSE.md -------------------------------------------------------------------------------- /Licenses/jquery.graphviz.svg.LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/Licenses/jquery.graphviz.svg.LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/README.md -------------------------------------------------------------------------------- /content/graphvizSvg/jquery.graphviz.svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/content/graphvizSvg/jquery.graphviz.svg.js -------------------------------------------------------------------------------- /content/highlighting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/content/highlighting.js -------------------------------------------------------------------------------- /content/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/content/icon.png -------------------------------------------------------------------------------- /content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/content/index.html -------------------------------------------------------------------------------- /content/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/content/save.js -------------------------------------------------------------------------------- /content/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/content/search.js -------------------------------------------------------------------------------- /content/toolbar/jquery.toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/content/toolbar/jquery.toolbar.css -------------------------------------------------------------------------------- /content/toolbar/jquery.toolbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/content/toolbar/jquery.toolbar.min.js -------------------------------------------------------------------------------- /dot/dot.configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/dot/dot.configuration.json -------------------------------------------------------------------------------- /dot/snippets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/dot/snippets/package.json -------------------------------------------------------------------------------- /dot/snippets/snippets/dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/dot/snippets/snippets/dot.json -------------------------------------------------------------------------------- /dot/syntaxes/dot.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/dot/syntaxes/dot.tmLanguage -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/shapes/Mcircle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/Mcircle.gif -------------------------------------------------------------------------------- /images/shapes/Mdiamond.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/Mdiamond.gif -------------------------------------------------------------------------------- /images/shapes/Msquare.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/Msquare.gif -------------------------------------------------------------------------------- /images/shapes/assembly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/assembly.gif -------------------------------------------------------------------------------- /images/shapes/box.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/box.gif -------------------------------------------------------------------------------- /images/shapes/box3d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/box3d.gif -------------------------------------------------------------------------------- /images/shapes/cds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/cds.gif -------------------------------------------------------------------------------- /images/shapes/circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/circle.gif -------------------------------------------------------------------------------- /images/shapes/component.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/component.gif -------------------------------------------------------------------------------- /images/shapes/cylinder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/cylinder.gif -------------------------------------------------------------------------------- /images/shapes/diamond.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/diamond.gif -------------------------------------------------------------------------------- /images/shapes/doublecircle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/doublecircle.gif -------------------------------------------------------------------------------- /images/shapes/doubleoctagon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/doubleoctagon.gif -------------------------------------------------------------------------------- /images/shapes/egg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/egg.gif -------------------------------------------------------------------------------- /images/shapes/ellipse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/ellipse.gif -------------------------------------------------------------------------------- /images/shapes/fivepoverhang.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/fivepoverhang.gif -------------------------------------------------------------------------------- /images/shapes/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/folder.gif -------------------------------------------------------------------------------- /images/shapes/hexagon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/hexagon.gif -------------------------------------------------------------------------------- /images/shapes/house.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/house.gif -------------------------------------------------------------------------------- /images/shapes/insulator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/insulator.gif -------------------------------------------------------------------------------- /images/shapes/invhouse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/invhouse.gif -------------------------------------------------------------------------------- /images/shapes/invtrapezium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/invtrapezium.gif -------------------------------------------------------------------------------- /images/shapes/invtriangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/invtriangle.gif -------------------------------------------------------------------------------- /images/shapes/larrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/larrow.gif -------------------------------------------------------------------------------- /images/shapes/lpromoter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/lpromoter.gif -------------------------------------------------------------------------------- /images/shapes/none.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/none.gif -------------------------------------------------------------------------------- /images/shapes/note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/note.gif -------------------------------------------------------------------------------- /images/shapes/noverhang.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/noverhang.gif -------------------------------------------------------------------------------- /images/shapes/octagon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/octagon.gif -------------------------------------------------------------------------------- /images/shapes/oval.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/oval.gif -------------------------------------------------------------------------------- /images/shapes/parallelogram.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/parallelogram.gif -------------------------------------------------------------------------------- /images/shapes/pentagon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/pentagon.gif -------------------------------------------------------------------------------- /images/shapes/plain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/plain.gif -------------------------------------------------------------------------------- /images/shapes/plaintext.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/plaintext.gif -------------------------------------------------------------------------------- /images/shapes/point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/point.gif -------------------------------------------------------------------------------- /images/shapes/polygon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/polygon.gif -------------------------------------------------------------------------------- /images/shapes/primersite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/primersite.gif -------------------------------------------------------------------------------- /images/shapes/promoter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/promoter.gif -------------------------------------------------------------------------------- /images/shapes/proteasesite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/proteasesite.gif -------------------------------------------------------------------------------- /images/shapes/proteinstab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/proteinstab.gif -------------------------------------------------------------------------------- /images/shapes/rarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/rarrow.gif -------------------------------------------------------------------------------- /images/shapes/rect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/rect.gif -------------------------------------------------------------------------------- /images/shapes/rectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/rectangle.gif -------------------------------------------------------------------------------- /images/shapes/restrictionsite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/restrictionsite.gif -------------------------------------------------------------------------------- /images/shapes/ribosite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/ribosite.gif -------------------------------------------------------------------------------- /images/shapes/rnastab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/rnastab.gif -------------------------------------------------------------------------------- /images/shapes/rpromoter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/rpromoter.gif -------------------------------------------------------------------------------- /images/shapes/septagon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/septagon.gif -------------------------------------------------------------------------------- /images/shapes/signature.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/signature.gif -------------------------------------------------------------------------------- /images/shapes/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/square.gif -------------------------------------------------------------------------------- /images/shapes/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/star.gif -------------------------------------------------------------------------------- /images/shapes/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/tab.gif -------------------------------------------------------------------------------- /images/shapes/terminator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/terminator.gif -------------------------------------------------------------------------------- /images/shapes/threepoverhang.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/threepoverhang.gif -------------------------------------------------------------------------------- /images/shapes/trapezium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/trapezium.gif -------------------------------------------------------------------------------- /images/shapes/triangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/triangle.gif -------------------------------------------------------------------------------- /images/shapes/tripleoctagon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/tripleoctagon.gif -------------------------------------------------------------------------------- /images/shapes/underline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/underline.gif -------------------------------------------------------------------------------- /images/shapes/utr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/images/shapes/utr.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/package.json -------------------------------------------------------------------------------- /scripts/language/documentation/attributes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/scripts/language/documentation/attributes.xml -------------------------------------------------------------------------------- /scripts/language/documentation/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/scripts/language/documentation/generator.js -------------------------------------------------------------------------------- /scripts/updateDependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/scripts/updateDependencies.js -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/features/interactiveWebview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/features/interactiveWebview.ts -------------------------------------------------------------------------------- /src/features/previewPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/features/previewPanel.ts -------------------------------------------------------------------------------- /src/language/ColorProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/ColorProvider.ts -------------------------------------------------------------------------------- /src/language/CompletionItemProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/CompletionItemProvider.ts -------------------------------------------------------------------------------- /src/language/DocumentFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/DocumentFormatter.ts -------------------------------------------------------------------------------- /src/language/DotParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/DotParser.ts -------------------------------------------------------------------------------- /src/language/HoverProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/HoverProvider.ts -------------------------------------------------------------------------------- /src/language/SymbolDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/SymbolDefinition.ts -------------------------------------------------------------------------------- /src/language/SymbolProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/SymbolProvider.ts -------------------------------------------------------------------------------- /src/language/definitions/arrowType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/definitions/arrowType.ts -------------------------------------------------------------------------------- /src/language/definitions/attributelist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/definitions/attributelist.ts -------------------------------------------------------------------------------- /src/language/definitions/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/definitions/colors.ts -------------------------------------------------------------------------------- /src/language/definitions/dirType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/definitions/dirType.ts -------------------------------------------------------------------------------- /src/language/definitions/nodeShapes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/definitions/nodeShapes.ts -------------------------------------------------------------------------------- /src/language/definitions/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/definitions/style.ts -------------------------------------------------------------------------------- /src/language/diagnosticCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/diagnosticCollection.ts -------------------------------------------------------------------------------- /src/language/documentation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/language/getAttributeDetail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/language/getAttributeDetail.ts -------------------------------------------------------------------------------- /src/prepareHTML.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/prepareHTML.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/src/settings.ts -------------------------------------------------------------------------------- /test/corpi/109_formatterOptions.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/109_formatterOptions.dot -------------------------------------------------------------------------------- /test/corpi/110_autoFormatter.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/110_autoFormatter.dot -------------------------------------------------------------------------------- /test/corpi/111_html_label_formatting.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/111_html_label_formatting.dot -------------------------------------------------------------------------------- /test/corpi/115_background.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/115_background.dot -------------------------------------------------------------------------------- /test/corpi/12_multiplePaths.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/12_multiplePaths.dot -------------------------------------------------------------------------------- /test/corpi/25_ports.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/25_ports.dot -------------------------------------------------------------------------------- /test/corpi/36_large.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/36_large.dot -------------------------------------------------------------------------------- /test/corpi/50_clusters.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/50_clusters.dot -------------------------------------------------------------------------------- /test/corpi/a.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/a.dot -------------------------------------------------------------------------------- /test/corpi/differentNodeTypes.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/differentNodeTypes.dot -------------------------------------------------------------------------------- /test/corpi/example1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/example1.dot -------------------------------------------------------------------------------- /test/corpi/example2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/example2.dot -------------------------------------------------------------------------------- /test/corpi/example3.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/example3.dot -------------------------------------------------------------------------------- /test/corpi/example4.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/example4.dot -------------------------------------------------------------------------------- /test/corpi/goImport.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/test/corpi/goImport.dot -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintinweb/vscode-interactive-graphviz/HEAD/webpack.config.js --------------------------------------------------------------------------------