├── .gitignore ├── History.md ├── Makefile ├── Readme.md ├── lib └── index.js ├── package.json └── test ├── fixture ├── build │ └── index.html └── src │ └── index.md └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalsmith/headings/HEAD/History.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalsmith/headings/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalsmith/headings/HEAD/Readme.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalsmith/headings/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalsmith/headings/HEAD/package.json -------------------------------------------------------------------------------- /test/fixture/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalsmith/headings/HEAD/test/fixture/build/index.html -------------------------------------------------------------------------------- /test/fixture/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalsmith/headings/HEAD/test/fixture/src/index.md -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalsmith/headings/HEAD/test/index.js --------------------------------------------------------------------------------