├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .npmrc ├── .travis.yml ├── .verb.md ├── LICENSE ├── README.md ├── example.js ├── index.js ├── lib └── rules.js ├── package.json └── test ├── expected ├── list.md ├── ol.md ├── path.md ├── reflinks.expand.md ├── table.md ├── ul.md └── variables.md ├── fixtures ├── blockquotes.md ├── cheatsheet.md ├── emphasis.md ├── example.md ├── links.md ├── list.md ├── missing.md ├── not-reflinks.md ├── ol.md ├── path.md ├── reflinks.expand.md ├── reflinks.md ├── reflinks.pretty.md ├── table.md ├── ul.md └── variables.md └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/.travis.yml -------------------------------------------------------------------------------- /.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/.verb.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/index.js -------------------------------------------------------------------------------- /lib/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/lib/rules.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/package.json -------------------------------------------------------------------------------- /test/expected/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/expected/list.md -------------------------------------------------------------------------------- /test/expected/ol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/expected/ol.md -------------------------------------------------------------------------------- /test/expected/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/expected/path.md -------------------------------------------------------------------------------- /test/expected/reflinks.expand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/expected/reflinks.expand.md -------------------------------------------------------------------------------- /test/expected/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/expected/table.md -------------------------------------------------------------------------------- /test/expected/ul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/expected/ul.md -------------------------------------------------------------------------------- /test/expected/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/expected/variables.md -------------------------------------------------------------------------------- /test/fixtures/blockquotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/blockquotes.md -------------------------------------------------------------------------------- /test/fixtures/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/cheatsheet.md -------------------------------------------------------------------------------- /test/fixtures/emphasis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/emphasis.md -------------------------------------------------------------------------------- /test/fixtures/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/example.md -------------------------------------------------------------------------------- /test/fixtures/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/links.md -------------------------------------------------------------------------------- /test/fixtures/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/list.md -------------------------------------------------------------------------------- /test/fixtures/missing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/missing.md -------------------------------------------------------------------------------- /test/fixtures/not-reflinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/not-reflinks.md -------------------------------------------------------------------------------- /test/fixtures/ol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/ol.md -------------------------------------------------------------------------------- /test/fixtures/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/path.md -------------------------------------------------------------------------------- /test/fixtures/reflinks.expand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/reflinks.expand.md -------------------------------------------------------------------------------- /test/fixtures/reflinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/reflinks.md -------------------------------------------------------------------------------- /test/fixtures/reflinks.pretty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/reflinks.pretty.md -------------------------------------------------------------------------------- /test/fixtures/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/table.md -------------------------------------------------------------------------------- /test/fixtures/ul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/ul.md -------------------------------------------------------------------------------- /test/fixtures/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/fixtures/variables.md -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/pretty-remarkable/HEAD/test/test.js --------------------------------------------------------------------------------