├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── README.md ├── bin └── m2j ├── bun.lockb ├── lib └── m2j.js ├── package.json └── test ├── .eslintrc ├── fixtures ├── bellflower.md ├── fiddler.md ├── lottery.md ├── no-yaml.md ├── output │ ├── allfiles.json │ ├── bellflower-content.json │ ├── bellflower-nopretty-70.json │ ├── bellflower-pretty-70.json │ └── lottery-pretty-30.json ├── short-content.md └── test-70.json └── test.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/README.md -------------------------------------------------------------------------------- /bin/m2j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/bin/m2j -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/bun.lockb -------------------------------------------------------------------------------- /lib/m2j.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/lib/m2j.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/fixtures/bellflower.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/test/fixtures/bellflower.md -------------------------------------------------------------------------------- /test/fixtures/fiddler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/test/fixtures/fiddler.md -------------------------------------------------------------------------------- /test/fixtures/lottery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/test/fixtures/lottery.md -------------------------------------------------------------------------------- /test/fixtures/no-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/test/fixtures/no-yaml.md -------------------------------------------------------------------------------- /test/fixtures/output/allfiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/test/fixtures/output/allfiles.json -------------------------------------------------------------------------------- /test/fixtures/output/bellflower-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/test/fixtures/output/bellflower-content.json -------------------------------------------------------------------------------- /test/fixtures/output/bellflower-nopretty-70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/test/fixtures/output/bellflower-nopretty-70.json -------------------------------------------------------------------------------- /test/fixtures/output/bellflower-pretty-70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/test/fixtures/output/bellflower-pretty-70.json -------------------------------------------------------------------------------- /test/fixtures/output/lottery-pretty-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/test/fixtures/output/lottery-pretty-30.json -------------------------------------------------------------------------------- /test/fixtures/short-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/test/fixtures/short-content.md -------------------------------------------------------------------------------- /test/fixtures/test-70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/test/fixtures/test-70.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottstanfield/markdown-to-json/HEAD/test/test.js --------------------------------------------------------------------------------