├── .github ├── dependabot.yml └── workflows │ └── gh-pages.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── Changelog.md ├── README.md ├── cypress.json ├── docs ├── .vuepress │ └── config.js ├── README.md └── test-diagrams.md ├── package.json ├── src ├── Loading.vue ├── clientAppEnhance.js ├── index.js ├── markdownItFence.js ├── markdownItPlugin.js └── mermaid.js └── tests └── cypress ├── .gitignore ├── fixtures └── example.json ├── integration ├── __image_snapshots__ │ ├── .gitignore │ └── renders diagrams #0.png └── simple.spec.js ├── plugins └── index.js └── support ├── commands.js └── index.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/Changelog.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/cypress.json -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/test-diagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/docs/test-diagrams.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/package.json -------------------------------------------------------------------------------- /src/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/src/Loading.vue -------------------------------------------------------------------------------- /src/clientAppEnhance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/src/clientAppEnhance.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/src/index.js -------------------------------------------------------------------------------- /src/markdownItFence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/src/markdownItFence.js -------------------------------------------------------------------------------- /src/markdownItPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/src/markdownItPlugin.js -------------------------------------------------------------------------------- /src/mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/src/mermaid.js -------------------------------------------------------------------------------- /tests/cypress/.gitignore: -------------------------------------------------------------------------------- 1 | screenshots 2 | videos 3 | -------------------------------------------------------------------------------- /tests/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/tests/cypress/fixtures/example.json -------------------------------------------------------------------------------- /tests/cypress/integration/__image_snapshots__/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/tests/cypress/integration/__image_snapshots__/.gitignore -------------------------------------------------------------------------------- /tests/cypress/integration/__image_snapshots__/renders diagrams #0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/tests/cypress/integration/__image_snapshots__/renders diagrams #0.png -------------------------------------------------------------------------------- /tests/cypress/integration/simple.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/tests/cypress/integration/simple.spec.js -------------------------------------------------------------------------------- /tests/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/tests/cypress/plugins/index.js -------------------------------------------------------------------------------- /tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/tests/cypress/support/commands.js -------------------------------------------------------------------------------- /tests/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eFrane/vuepress-plugin-mermaidjs/HEAD/tests/cypress/support/index.js --------------------------------------------------------------------------------