├── .editorconfig ├── .gitdocs.json ├── .gitignore ├── .travis.yml ├── bin ├── compile ├── gitdocs └── test ├── changelog.md ├── docs ├── .static │ ├── logo-markdown.png │ └── logo.svg ├── api │ ├── commands.md │ ├── config-file.md │ └── front-matter.md ├── customizing-sidebar.md ├── getting-started.md ├── header-links.md ├── index-files.md ├── index.md ├── installation.md ├── json-data.md ├── production-builds.md ├── running-locally.md ├── static-files.md ├── syntax-highlighting.md ├── theming.md ├── troubleshooting │ ├── faq.md │ └── index.md └── using-sources.md ├── license.md ├── notes.md ├── package.json ├── readme.md ├── src ├── cmds │ ├── build.js │ ├── help.js │ ├── init.js │ ├── manifest.js │ ├── serve.js │ └── version.js ├── core │ ├── compiler.js │ ├── compiler.spec.js │ ├── components.js │ ├── components.spec.js │ ├── database.js │ ├── database.spec.js │ ├── filesystem.js │ ├── filesystem.spec.js │ ├── hydrate.js │ ├── hydrate.spec.js │ ├── index.js │ ├── index.spec.js │ ├── output.js │ ├── output.spec.js │ ├── robots.js │ ├── robots.spec.js │ ├── server.js │ ├── server.spec.js │ ├── sitemap.js │ ├── sitemap.spec.js │ ├── socket.js │ ├── socket.spec.js │ ├── source.js │ ├── source.spec.js │ ├── static.js │ ├── static.spec.js │ ├── syntax.js │ ├── syntax.spec.js │ ├── template.js │ └── template.spec.js ├── index.js ├── sources │ ├── git.js │ └── local.js └── utils │ ├── arguments.js │ ├── arguments.spec.js │ ├── babel.js │ ├── babel.spec.js │ ├── config.js │ ├── config.spec.js │ ├── emit.js │ ├── emit.spec.js │ ├── frontmatter.js │ ├── frontmatter.spec.js │ ├── merge.js │ ├── merge.spec.js │ ├── path.js │ ├── path.spec.js │ ├── port.js │ ├── port.spec.js │ ├── promise.js │ ├── promise.spec.js │ ├── readline.js │ ├── readline.spec.js │ ├── system.js │ ├── system.spec.js │ ├── temp.js │ ├── temp.spec.js │ ├── theme.js │ └── theme.spec.js ├── starter ├── about-us │ ├── readme.md │ └── work-with-us.md ├── getting-started │ ├── installation.md │ ├── readme.md │ └── troubleshooting.md └── readme.md ├── tests ├── help.test.js ├── helpers.js ├── index.test.js ├── manifest.test.js └── mock │ ├── .gitdocs.json │ ├── external.md │ ├── foo │ ├── bar.md │ ├── baz.md │ └── index.md │ ├── garply │ ├── fred.md │ ├── readme.md │ └── waldo.md │ ├── plugh.md │ ├── qux │ ├── corge.md │ └── grault.md │ ├── readme.md │ ├── thud.md │ └── xyzzy │ ├── index.md │ ├── zz.md │ ├── zzz.md │ └── zzzz.md ├── themes ├── default │ ├── application │ │ ├── index.js │ │ └── styles.js │ ├── breadcrumbs │ │ ├── index.js │ │ └── styles.js │ ├── context.js │ ├── header │ │ ├── index.js │ │ └── styles.js │ ├── history.js │ ├── icons │ │ ├── close.js │ │ ├── external.js │ │ └── hamburger.js │ ├── index.js │ ├── loading │ │ ├── index.js │ │ └── styles.js │ ├── logo │ │ ├── index.js │ │ └── styles.js │ ├── markdown │ │ ├── index.js │ │ ├── overrides │ │ │ ├── Code.js │ │ │ ├── Header.js │ │ │ └── Link.js │ │ └── styles.js │ ├── not-found │ │ └── index.js │ ├── page │ │ ├── index.js │ │ └── styles.js │ ├── routes.js │ ├── search │ │ ├── db.js │ │ ├── index.js │ │ ├── strip.js │ │ └── styles.js │ ├── sidebar │ │ ├── index.js │ │ └── styles.js │ ├── toc │ │ ├── folder.js │ │ ├── page.js │ │ └── styles.js │ └── utils │ │ └── index.js └── server.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitdocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/.gitdocs.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/.travis.yml -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/gitdocs: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../src')() 4 | -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/bin/test -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | -------------------------------------------------------------------------------- /docs/.static/logo-markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/.static/logo-markdown.png -------------------------------------------------------------------------------- /docs/.static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/.static/logo.svg -------------------------------------------------------------------------------- /docs/api/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/api/commands.md -------------------------------------------------------------------------------- /docs/api/config-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/api/config-file.md -------------------------------------------------------------------------------- /docs/api/front-matter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/api/front-matter.md -------------------------------------------------------------------------------- /docs/customizing-sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/customizing-sidebar.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/header-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/header-links.md -------------------------------------------------------------------------------- /docs/index-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/index-files.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/json-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/json-data.md -------------------------------------------------------------------------------- /docs/production-builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/production-builds.md -------------------------------------------------------------------------------- /docs/running-locally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/running-locally.md -------------------------------------------------------------------------------- /docs/static-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/static-files.md -------------------------------------------------------------------------------- /docs/syntax-highlighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/syntax-highlighting.md -------------------------------------------------------------------------------- /docs/theming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/theming.md -------------------------------------------------------------------------------- /docs/troubleshooting/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/troubleshooting/faq.md -------------------------------------------------------------------------------- /docs/troubleshooting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/troubleshooting/index.md -------------------------------------------------------------------------------- /docs/using-sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/docs/using-sources.md -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/license.md -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/notes.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/readme.md -------------------------------------------------------------------------------- /src/cmds/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/cmds/build.js -------------------------------------------------------------------------------- /src/cmds/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/cmds/help.js -------------------------------------------------------------------------------- /src/cmds/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/cmds/init.js -------------------------------------------------------------------------------- /src/cmds/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/cmds/manifest.js -------------------------------------------------------------------------------- /src/cmds/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/cmds/serve.js -------------------------------------------------------------------------------- /src/cmds/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/cmds/version.js -------------------------------------------------------------------------------- /src/core/compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/compiler.js -------------------------------------------------------------------------------- /src/core/compiler.spec.js: -------------------------------------------------------------------------------- 1 | describe('unit: core/compiler', () => { 2 | 3 | }) 4 | -------------------------------------------------------------------------------- /src/core/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/components.js -------------------------------------------------------------------------------- /src/core/components.spec.js: -------------------------------------------------------------------------------- 1 | describe('unit: core/components', () => { 2 | 3 | }) 4 | -------------------------------------------------------------------------------- /src/core/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/database.js -------------------------------------------------------------------------------- /src/core/database.spec.js: -------------------------------------------------------------------------------- 1 | describe('unit: core/database', () => { 2 | 3 | }) 4 | -------------------------------------------------------------------------------- /src/core/filesystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/filesystem.js -------------------------------------------------------------------------------- /src/core/filesystem.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/filesystem.spec.js -------------------------------------------------------------------------------- /src/core/hydrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/hydrate.js -------------------------------------------------------------------------------- /src/core/hydrate.spec.js: -------------------------------------------------------------------------------- 1 | describe('unit: core/hydrate', () => { 2 | 3 | }) 4 | -------------------------------------------------------------------------------- /src/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/index.js -------------------------------------------------------------------------------- /src/core/index.spec.js: -------------------------------------------------------------------------------- 1 | describe('unit: core/index', () => { 2 | 3 | }) 4 | -------------------------------------------------------------------------------- /src/core/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/output.js -------------------------------------------------------------------------------- /src/core/output.spec.js: -------------------------------------------------------------------------------- 1 | describe('unit: core/output', () => { 2 | 3 | }) 4 | -------------------------------------------------------------------------------- /src/core/robots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/robots.js -------------------------------------------------------------------------------- /src/core/robots.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/robots.spec.js -------------------------------------------------------------------------------- /src/core/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/server.js -------------------------------------------------------------------------------- /src/core/server.spec.js: -------------------------------------------------------------------------------- 1 | describe('unit: core/server', () => { 2 | 3 | }) 4 | -------------------------------------------------------------------------------- /src/core/sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/sitemap.js -------------------------------------------------------------------------------- /src/core/sitemap.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/sitemap.spec.js -------------------------------------------------------------------------------- /src/core/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/socket.js -------------------------------------------------------------------------------- /src/core/socket.spec.js: -------------------------------------------------------------------------------- 1 | describe('unit: core/socket', () => { 2 | 3 | }) 4 | -------------------------------------------------------------------------------- /src/core/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/source.js -------------------------------------------------------------------------------- /src/core/source.spec.js: -------------------------------------------------------------------------------- 1 | describe('unit: core/source', () => { 2 | 3 | }) 4 | -------------------------------------------------------------------------------- /src/core/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/static.js -------------------------------------------------------------------------------- /src/core/static.spec.js: -------------------------------------------------------------------------------- 1 | describe('unit: core/static', () => { 2 | 3 | }) 4 | -------------------------------------------------------------------------------- /src/core/syntax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/syntax.js -------------------------------------------------------------------------------- /src/core/syntax.spec.js: -------------------------------------------------------------------------------- 1 | describe('unit: core/syntax', () => { 2 | 3 | }) 4 | -------------------------------------------------------------------------------- /src/core/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/template.js -------------------------------------------------------------------------------- /src/core/template.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/core/template.spec.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/index.js -------------------------------------------------------------------------------- /src/sources/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/sources/git.js -------------------------------------------------------------------------------- /src/sources/local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/sources/local.js -------------------------------------------------------------------------------- /src/utils/arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/arguments.js -------------------------------------------------------------------------------- /src/utils/arguments.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/arguments.spec.js -------------------------------------------------------------------------------- /src/utils/babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/babel.js -------------------------------------------------------------------------------- /src/utils/babel.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/babel.spec.js -------------------------------------------------------------------------------- /src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/config.js -------------------------------------------------------------------------------- /src/utils/config.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/config.spec.js -------------------------------------------------------------------------------- /src/utils/emit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/emit.js -------------------------------------------------------------------------------- /src/utils/emit.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/emit.spec.js -------------------------------------------------------------------------------- /src/utils/frontmatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/frontmatter.js -------------------------------------------------------------------------------- /src/utils/frontmatter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/frontmatter.spec.js -------------------------------------------------------------------------------- /src/utils/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/merge.js -------------------------------------------------------------------------------- /src/utils/merge.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/merge.spec.js -------------------------------------------------------------------------------- /src/utils/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/path.js -------------------------------------------------------------------------------- /src/utils/path.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/path.spec.js -------------------------------------------------------------------------------- /src/utils/port.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/port.js -------------------------------------------------------------------------------- /src/utils/port.spec.js: -------------------------------------------------------------------------------- 1 | describe('unit: utils/port', () => { 2 | it('default()') 3 | }) 4 | -------------------------------------------------------------------------------- /src/utils/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/promise.js -------------------------------------------------------------------------------- /src/utils/promise.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/promise.spec.js -------------------------------------------------------------------------------- /src/utils/readline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/readline.js -------------------------------------------------------------------------------- /src/utils/readline.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/readline.spec.js -------------------------------------------------------------------------------- /src/utils/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/system.js -------------------------------------------------------------------------------- /src/utils/system.spec.js: -------------------------------------------------------------------------------- 1 | describe('unit: utils/system', () => { 2 | it('addToNodePath()') 3 | }) 4 | -------------------------------------------------------------------------------- /src/utils/temp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/temp.js -------------------------------------------------------------------------------- /src/utils/temp.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/temp.spec.js -------------------------------------------------------------------------------- /src/utils/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/src/utils/theme.js -------------------------------------------------------------------------------- /src/utils/theme.spec.js: -------------------------------------------------------------------------------- 1 | describe('unit: utils/theme', () => { 2 | 3 | }) 4 | -------------------------------------------------------------------------------- /starter/about-us/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/starter/about-us/readme.md -------------------------------------------------------------------------------- /starter/about-us/work-with-us.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/starter/about-us/work-with-us.md -------------------------------------------------------------------------------- /starter/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/starter/getting-started/installation.md -------------------------------------------------------------------------------- /starter/getting-started/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/starter/getting-started/readme.md -------------------------------------------------------------------------------- /starter/getting-started/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/starter/getting-started/troubleshooting.md -------------------------------------------------------------------------------- /starter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/starter/readme.md -------------------------------------------------------------------------------- /tests/help.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/tests/help.test.js -------------------------------------------------------------------------------- /tests/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/tests/helpers.js -------------------------------------------------------------------------------- /tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/tests/index.test.js -------------------------------------------------------------------------------- /tests/manifest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/tests/manifest.test.js -------------------------------------------------------------------------------- /tests/mock/.gitdocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/tests/mock/.gitdocs.json -------------------------------------------------------------------------------- /tests/mock/external.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/tests/mock/external.md -------------------------------------------------------------------------------- /tests/mock/foo/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/tests/mock/foo/bar.md -------------------------------------------------------------------------------- /tests/mock/foo/baz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/tests/mock/foo/baz.md -------------------------------------------------------------------------------- /tests/mock/foo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/tests/mock/foo/index.md -------------------------------------------------------------------------------- /tests/mock/garply/fred.md: -------------------------------------------------------------------------------- 1 | --- 2 | hidden: true 3 | --- 4 | # The Fred 5 | -------------------------------------------------------------------------------- /tests/mock/garply/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/tests/mock/garply/readme.md -------------------------------------------------------------------------------- /tests/mock/garply/waldo.md: -------------------------------------------------------------------------------- 1 | # The Waldo 2 | -------------------------------------------------------------------------------- /tests/mock/plugh.md: -------------------------------------------------------------------------------- 1 | # The Plugh 2 | -------------------------------------------------------------------------------- /tests/mock/qux/corge.md: -------------------------------------------------------------------------------- 1 | --- 2 | breadcrumbs: false 3 | --- 4 | # The Corge 5 | -------------------------------------------------------------------------------- /tests/mock/qux/grault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/tests/mock/qux/grault.md -------------------------------------------------------------------------------- /tests/mock/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/tests/mock/readme.md -------------------------------------------------------------------------------- /tests/mock/thud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/tests/mock/thud.md -------------------------------------------------------------------------------- /tests/mock/xyzzy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/tests/mock/xyzzy/index.md -------------------------------------------------------------------------------- /tests/mock/xyzzy/zz.md: -------------------------------------------------------------------------------- 1 | # The ZZ 2 | -------------------------------------------------------------------------------- /tests/mock/xyzzy/zzz.md: -------------------------------------------------------------------------------- 1 | # The ZZZ 2 | -------------------------------------------------------------------------------- /tests/mock/xyzzy/zzzz.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/default/application/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/application/index.js -------------------------------------------------------------------------------- /themes/default/application/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/application/styles.js -------------------------------------------------------------------------------- /themes/default/breadcrumbs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/breadcrumbs/index.js -------------------------------------------------------------------------------- /themes/default/breadcrumbs/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/breadcrumbs/styles.js -------------------------------------------------------------------------------- /themes/default/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/context.js -------------------------------------------------------------------------------- /themes/default/header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/header/index.js -------------------------------------------------------------------------------- /themes/default/header/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/header/styles.js -------------------------------------------------------------------------------- /themes/default/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/history.js -------------------------------------------------------------------------------- /themes/default/icons/close.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/icons/close.js -------------------------------------------------------------------------------- /themes/default/icons/external.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/icons/external.js -------------------------------------------------------------------------------- /themes/default/icons/hamburger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/icons/hamburger.js -------------------------------------------------------------------------------- /themes/default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/index.js -------------------------------------------------------------------------------- /themes/default/loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/loading/index.js -------------------------------------------------------------------------------- /themes/default/loading/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/loading/styles.js -------------------------------------------------------------------------------- /themes/default/logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/logo/index.js -------------------------------------------------------------------------------- /themes/default/logo/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/logo/styles.js -------------------------------------------------------------------------------- /themes/default/markdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/markdown/index.js -------------------------------------------------------------------------------- /themes/default/markdown/overrides/Code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/markdown/overrides/Code.js -------------------------------------------------------------------------------- /themes/default/markdown/overrides/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/markdown/overrides/Header.js -------------------------------------------------------------------------------- /themes/default/markdown/overrides/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/markdown/overrides/Link.js -------------------------------------------------------------------------------- /themes/default/markdown/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/markdown/styles.js -------------------------------------------------------------------------------- /themes/default/not-found/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/not-found/index.js -------------------------------------------------------------------------------- /themes/default/page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/page/index.js -------------------------------------------------------------------------------- /themes/default/page/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/page/styles.js -------------------------------------------------------------------------------- /themes/default/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/routes.js -------------------------------------------------------------------------------- /themes/default/search/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/search/db.js -------------------------------------------------------------------------------- /themes/default/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/search/index.js -------------------------------------------------------------------------------- /themes/default/search/strip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/search/strip.js -------------------------------------------------------------------------------- /themes/default/search/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/search/styles.js -------------------------------------------------------------------------------- /themes/default/sidebar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/sidebar/index.js -------------------------------------------------------------------------------- /themes/default/sidebar/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/sidebar/styles.js -------------------------------------------------------------------------------- /themes/default/toc/folder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/toc/folder.js -------------------------------------------------------------------------------- /themes/default/toc/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/toc/page.js -------------------------------------------------------------------------------- /themes/default/toc/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/toc/styles.js -------------------------------------------------------------------------------- /themes/default/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/default/utils/index.js -------------------------------------------------------------------------------- /themes/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/themes/server.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vectordotdev/gitdocs/HEAD/yarn.lock --------------------------------------------------------------------------------