├── .gitignore ├── index.js ├── package.json ├── readme.md ├── resources ├── index.html └── layout.css └── test ├── expect ├── file1.html └── multiple.html ├── fixtures ├── cat1file1.md ├── cat1file2.md ├── cat2file1.md ├── cat2file2.md ├── file1-orphan.md └── noYaml-orphan.md └── test.mocha.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode 3 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sojournerc/gulp-markdown-docs/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sojournerc/gulp-markdown-docs/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sojournerc/gulp-markdown-docs/HEAD/readme.md -------------------------------------------------------------------------------- /resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sojournerc/gulp-markdown-docs/HEAD/resources/index.html -------------------------------------------------------------------------------- /resources/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sojournerc/gulp-markdown-docs/HEAD/resources/layout.css -------------------------------------------------------------------------------- /test/expect/file1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sojournerc/gulp-markdown-docs/HEAD/test/expect/file1.html -------------------------------------------------------------------------------- /test/expect/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sojournerc/gulp-markdown-docs/HEAD/test/expect/multiple.html -------------------------------------------------------------------------------- /test/fixtures/cat1file1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sojournerc/gulp-markdown-docs/HEAD/test/fixtures/cat1file1.md -------------------------------------------------------------------------------- /test/fixtures/cat1file2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sojournerc/gulp-markdown-docs/HEAD/test/fixtures/cat1file2.md -------------------------------------------------------------------------------- /test/fixtures/cat2file1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sojournerc/gulp-markdown-docs/HEAD/test/fixtures/cat2file1.md -------------------------------------------------------------------------------- /test/fixtures/cat2file2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sojournerc/gulp-markdown-docs/HEAD/test/fixtures/cat2file2.md -------------------------------------------------------------------------------- /test/fixtures/file1-orphan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sojournerc/gulp-markdown-docs/HEAD/test/fixtures/file1-orphan.md -------------------------------------------------------------------------------- /test/fixtures/noYaml-orphan.md: -------------------------------------------------------------------------------- 1 | 2 | This is the body 3 | -------------------------------------------------------------------------------- /test/test.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sojournerc/gulp-markdown-docs/HEAD/test/test.mocha.js --------------------------------------------------------------------------------