├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── package.json ├── renovate.json └── test ├── .eslintrc ├── filename.spec.js ├── files.spec.js ├── fixtures.js ├── format-all.spec.js ├── formatter.spec.js ├── preformat.spec.js ├── slug.spec.js └── url.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /coverage/**/* 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/renovate.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/filename.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/test/filename.spec.js -------------------------------------------------------------------------------- /test/files.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/test/files.spec.js -------------------------------------------------------------------------------- /test/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/test/fixtures.js -------------------------------------------------------------------------------- /test/format-all.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/test/format-all.spec.js -------------------------------------------------------------------------------- /test/formatter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/test/formatter.spec.js -------------------------------------------------------------------------------- /test/preformat.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/test/preformat.spec.js -------------------------------------------------------------------------------- /test/slug.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/test/slug.spec.js -------------------------------------------------------------------------------- /test/url.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/node-format-microformat/HEAD/test/url.spec.js --------------------------------------------------------------------------------