├── .gitignore ├── .travis.yml ├── README.md ├── index.js ├── package.json └── test ├── fixtures ├── arrays.html ├── boolean.html ├── colons_in_values.html ├── cordova.html ├── dates.html ├── dirty.html ├── multi_comment.html ├── not_at_the_top.html ├── numeric.html ├── preceding_whitespace.html ├── simple.html ├── single_line.html ├── undefined.html └── wrapped.html ├── index.js └── mocha.opts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/arrays.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/test/fixtures/arrays.html -------------------------------------------------------------------------------- /test/fixtures/boolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/test/fixtures/boolean.html -------------------------------------------------------------------------------- /test/fixtures/colons_in_values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/test/fixtures/colons_in_values.html -------------------------------------------------------------------------------- /test/fixtures/cordova.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/test/fixtures/cordova.html -------------------------------------------------------------------------------- /test/fixtures/dates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/test/fixtures/dates.html -------------------------------------------------------------------------------- /test/fixtures/dirty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/test/fixtures/dirty.html -------------------------------------------------------------------------------- /test/fixtures/multi_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/test/fixtures/multi_comment.html -------------------------------------------------------------------------------- /test/fixtures/not_at_the_top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/test/fixtures/not_at_the_top.html -------------------------------------------------------------------------------- /test/fixtures/numeric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/test/fixtures/numeric.html -------------------------------------------------------------------------------- /test/fixtures/preceding_whitespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/test/fixtures/preceding_whitespace.html -------------------------------------------------------------------------------- /test/fixtures/simple.html: -------------------------------------------------------------------------------- 1 | 4 | 5 |

Hello World

6 | -------------------------------------------------------------------------------- /test/fixtures/single_line.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Hello World

4 | -------------------------------------------------------------------------------- /test/fixtures/undefined.html: -------------------------------------------------------------------------------- 1 | 4 |

Hello World

5 | -------------------------------------------------------------------------------- /test/fixtures/wrapped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/test/fixtures/wrapped.html -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeke/html-frontmatter/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --ui tdd 3 | --------------------------------------------------------------------------------