├── .gitignore ├── README.md ├── index.js ├── package.json └── spec ├── fixture ├── build │ └── 30000words.html └── src │ └── 30000words.html └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majodev/metalsmith-word-count/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majodev/metalsmith-word-count/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majodev/metalsmith-word-count/HEAD/package.json -------------------------------------------------------------------------------- /spec/fixture/build/30000words.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majodev/metalsmith-word-count/HEAD/spec/fixture/build/30000words.html -------------------------------------------------------------------------------- /spec/fixture/src/30000words.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majodev/metalsmith-word-count/HEAD/spec/fixture/src/30000words.html -------------------------------------------------------------------------------- /spec/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majodev/metalsmith-word-count/HEAD/spec/index.js --------------------------------------------------------------------------------