├── .github └── FUNDING.yml ├── .gitignore ├── Generate Single-page HTML Export.ajs ├── README.md ├── libs ├── marked.min.js ├── nashorn-polyfills.js └── underscore-min.js ├── resources ├── Fonts │ ├── Icon Font based on FontAwesome for Archi Single-page HTML Export.json │ ├── Icon-v1.1-fa.woff.base64.txt │ └── Icon-v1.1-fa.zip ├── icon.css ├── picnic-custom.css └── roboto.css └── templates ├── documentation.tpl ├── element.tpl ├── input-checkbox.tpl ├── main-report.html ├── model-tree-folder.tpl ├── model-tree-view.tpl ├── relationship.tpl ├── view-diagram.tpl ├── view-title.tpl ├── visibility-rule-bold.tpl └── visibility-rule-reveal.tpl /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /Generate Single-page HTML Export.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/Generate Single-page HTML Export.ajs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/README.md -------------------------------------------------------------------------------- /libs/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/libs/marked.min.js -------------------------------------------------------------------------------- /libs/nashorn-polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/libs/nashorn-polyfills.js -------------------------------------------------------------------------------- /libs/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/libs/underscore-min.js -------------------------------------------------------------------------------- /resources/Fonts/Icon Font based on FontAwesome for Archi Single-page HTML Export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/resources/Fonts/Icon Font based on FontAwesome for Archi Single-page HTML Export.json -------------------------------------------------------------------------------- /resources/Fonts/Icon-v1.1-fa.woff.base64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/resources/Fonts/Icon-v1.1-fa.woff.base64.txt -------------------------------------------------------------------------------- /resources/Fonts/Icon-v1.1-fa.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/resources/Fonts/Icon-v1.1-fa.zip -------------------------------------------------------------------------------- /resources/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/resources/icon.css -------------------------------------------------------------------------------- /resources/picnic-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/resources/picnic-custom.css -------------------------------------------------------------------------------- /resources/roboto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/resources/roboto.css -------------------------------------------------------------------------------- /templates/documentation.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/templates/documentation.tpl -------------------------------------------------------------------------------- /templates/element.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/templates/element.tpl -------------------------------------------------------------------------------- /templates/input-checkbox.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/templates/input-checkbox.tpl -------------------------------------------------------------------------------- /templates/main-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/templates/main-report.html -------------------------------------------------------------------------------- /templates/model-tree-folder.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/templates/model-tree-folder.tpl -------------------------------------------------------------------------------- /templates/model-tree-view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/templates/model-tree-view.tpl -------------------------------------------------------------------------------- /templates/relationship.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/templates/relationship.tpl -------------------------------------------------------------------------------- /templates/view-diagram.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/templates/view-diagram.tpl -------------------------------------------------------------------------------- /templates/view-title.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/templates/view-title.tpl -------------------------------------------------------------------------------- /templates/visibility-rule-bold.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/templates/visibility-rule-bold.tpl -------------------------------------------------------------------------------- /templates/visibility-rule-reveal.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archi-contribs/jarchi-single-page-html-export/HEAD/templates/visibility-rule-reveal.tpl --------------------------------------------------------------------------------