├── .editorconfig ├── .gitattributes ├── .gitignore ├── .npmignore ├── .travis.yml ├── History.md ├── Makefile ├── Readme.md ├── lib └── index.js ├── package.json └── test ├── fixtures ├── basic │ ├── expected │ │ └── index.html │ └── src │ │ └── index.md ├── combo │ ├── expected │ │ └── index.html │ └── src │ │ └── index.md ├── env-plugin │ ├── expected │ │ └── index.html │ └── src │ │ └── index.md ├── options │ ├── expected │ │ └── index.html │ └── src │ │ └── index.md ├── parser │ ├── expected │ │ └── index.html │ └── src │ │ └── index.md ├── plugin-options-preset │ ├── expected │ │ └── index.htm │ └── src │ │ └── index.html ├── plugin-options │ ├── expected │ │ └── index.htm │ └── src │ │ └── index.html ├── plugin │ ├── expected │ │ └── index.html │ └── src │ │ └── index.md └── preset │ ├── expected │ └── index.html │ └── src │ └── index.md └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | test/fixtures/** text eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test/fixtures/*/build/* 3 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .editorconfig 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/.travis.yml -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/History.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/Readme.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/basic/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/basic/expected/index.html -------------------------------------------------------------------------------- /test/fixtures/basic/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/basic/src/index.md -------------------------------------------------------------------------------- /test/fixtures/combo/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/combo/expected/index.html -------------------------------------------------------------------------------- /test/fixtures/combo/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/combo/src/index.md -------------------------------------------------------------------------------- /test/fixtures/env-plugin/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/env-plugin/expected/index.html -------------------------------------------------------------------------------- /test/fixtures/env-plugin/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/env-plugin/src/index.md -------------------------------------------------------------------------------- /test/fixtures/options/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/options/expected/index.html -------------------------------------------------------------------------------- /test/fixtures/options/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/options/src/index.md -------------------------------------------------------------------------------- /test/fixtures/parser/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/parser/expected/index.html -------------------------------------------------------------------------------- /test/fixtures/parser/src/index.md: -------------------------------------------------------------------------------- 1 | # A Markdown Post 2 | 3 | With some *slanted* content. 4 | -------------------------------------------------------------------------------- /test/fixtures/plugin-options-preset/expected/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/plugin-options-preset/expected/index.htm -------------------------------------------------------------------------------- /test/fixtures/plugin-options-preset/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/plugin-options-preset/src/index.html -------------------------------------------------------------------------------- /test/fixtures/plugin-options/expected/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/plugin-options/expected/index.htm -------------------------------------------------------------------------------- /test/fixtures/plugin-options/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/plugin-options/src/index.html -------------------------------------------------------------------------------- /test/fixtures/plugin/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/plugin/expected/index.html -------------------------------------------------------------------------------- /test/fixtures/plugin/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/plugin/src/index.md -------------------------------------------------------------------------------- /test/fixtures/preset/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/preset/expected/index.html -------------------------------------------------------------------------------- /test/fixtures/preset/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/fixtures/preset/src/index.md -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayo/metalsmith-markdownit/HEAD/test/index.js --------------------------------------------------------------------------------