├── .gitignore ├── .travis.yml ├── cli.js ├── index.js ├── lib ├── codeBlockUtils.js ├── formatter.js └── linter.js ├── package.json ├── readme.md └── tests ├── fixtures ├── clean.md ├── cleanable.md └── dirty.md └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/standard-markdown/HEAD/.travis.yml -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/standard-markdown/HEAD/cli.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/standard-markdown/HEAD/index.js -------------------------------------------------------------------------------- /lib/codeBlockUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/standard-markdown/HEAD/lib/codeBlockUtils.js -------------------------------------------------------------------------------- /lib/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/standard-markdown/HEAD/lib/formatter.js -------------------------------------------------------------------------------- /lib/linter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/standard-markdown/HEAD/lib/linter.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/standard-markdown/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/standard-markdown/HEAD/readme.md -------------------------------------------------------------------------------- /tests/fixtures/clean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/standard-markdown/HEAD/tests/fixtures/clean.md -------------------------------------------------------------------------------- /tests/fixtures/cleanable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/standard-markdown/HEAD/tests/fixtures/cleanable.md -------------------------------------------------------------------------------- /tests/fixtures/dirty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/standard-markdown/HEAD/tests/fixtures/dirty.md -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/standard-markdown/HEAD/tests/index.js --------------------------------------------------------------------------------