├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── convert.md ├── documentation.md ├── index.js ├── lprc.js ├── package.json ├── project.md ├── setup.md ├── test.js └── tests ├── blackwhitehats ├── .gitignore ├── blackwhitehats.md ├── canonical │ └── build │ │ └── hats.js └── original │ └── blackwhitehats.md ├── cheerio ├── .gitignore ├── canonical │ ├── build │ │ └── out.html │ └── out.test └── cheers.md ├── cinnamon ├── .gitignore ├── canonical │ └── build │ │ ├── cinnamon.css │ │ ├── cinnamon.html │ │ ├── cinnamon.js │ │ └── cinnamon_emb.js ├── cinnamon.md └── original │ └── cinnamon.md ├── csv ├── .gitignore ├── canonical │ └── build │ │ └── out.csv └── project.md ├── date ├── .gitignore ├── canonical │ └── build │ │ └── out.txt └── project.md ├── fence ├── .gitignore ├── canonical │ └── build │ │ └── fence.txt ├── fence.md └── original │ └── fence.md ├── first ├── .gitignore ├── canonical │ └── build │ │ └── first.txt ├── first.md ├── first.txt ├── second.md └── toread.txt ├── fizzbuzz ├── .gitignore ├── canonical │ └── build │ │ └── fizzbuzz.js ├── fizzbuzz.md └── original │ └── fizzbuzz.md ├── he ├── .gitignore ├── canonical │ └── build │ │ └── out.txt └── project.md ├── integrated ├── .gitignore ├── canonical │ └── build │ │ ├── dev │ │ └── index.html │ │ └── prod │ │ └── index.html ├── integrated.md ├── lprc.js └── lprc.md ├── jstidy ├── .gitignore ├── canonical │ └── build │ │ └── jstidytest.js ├── jstidy.md └── original │ └── jstidy.md ├── lodash ├── .gitignore ├── canonical │ └── build │ │ └── out.txt └── project.md ├── logs ├── .gitignore ├── canonical │ └── build │ │ ├── logs.htm │ │ └── logs.html ├── canonicalold │ └── build │ │ ├── logs.htm │ │ └── logs.html ├── logs.md ├── lprc.js └── original │ └── logs.md ├── lprc.js ├── matrix ├── .gitignore ├── canonical │ └── build │ │ └── out.txt └── matrix.md ├── primes ├── .gitignore ├── canonical │ └── out.test ├── original │ └── primes.md └── primes.md ├── sample ├── .gitignore ├── canonical │ └── build │ │ └── count.js ├── original │ └── sample.md └── sample.md ├── template ├── .gitignore ├── canonical │ └── build │ │ ├── first.html │ │ ├── out.txt │ │ └── snippet ├── original │ ├── simpletemp.md │ └── templating.md ├── simpletemp.md └── templating.md └── testpro ├── .gitignore ├── canonical └── build │ ├── just-talk │ ├── out.txt │ └── testpro.js ├── original ├── period.md └── testpro.md ├── period.md └── testpro.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /build 3 | /cache 4 | /.checksum 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/README.md -------------------------------------------------------------------------------- /convert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/convert.md -------------------------------------------------------------------------------- /documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/documentation.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/index.js -------------------------------------------------------------------------------- /lprc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/lprc.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/package.json -------------------------------------------------------------------------------- /project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/project.md -------------------------------------------------------------------------------- /setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/setup.md -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/test.js -------------------------------------------------------------------------------- /tests/blackwhitehats/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/blackwhitehats/.gitignore -------------------------------------------------------------------------------- /tests/blackwhitehats/blackwhitehats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/blackwhitehats/blackwhitehats.md -------------------------------------------------------------------------------- /tests/blackwhitehats/canonical/build/hats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/blackwhitehats/canonical/build/hats.js -------------------------------------------------------------------------------- /tests/blackwhitehats/original/blackwhitehats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/blackwhitehats/original/blackwhitehats.md -------------------------------------------------------------------------------- /tests/cheerio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/cheerio/.gitignore -------------------------------------------------------------------------------- /tests/cheerio/canonical/build/out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/cheerio/canonical/build/out.html -------------------------------------------------------------------------------- /tests/cheerio/canonical/out.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/cheerio/canonical/out.test -------------------------------------------------------------------------------- /tests/cheerio/cheers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/cheerio/cheers.md -------------------------------------------------------------------------------- /tests/cinnamon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/cinnamon/.gitignore -------------------------------------------------------------------------------- /tests/cinnamon/canonical/build/cinnamon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/cinnamon/canonical/build/cinnamon.css -------------------------------------------------------------------------------- /tests/cinnamon/canonical/build/cinnamon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/cinnamon/canonical/build/cinnamon.html -------------------------------------------------------------------------------- /tests/cinnamon/canonical/build/cinnamon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/cinnamon/canonical/build/cinnamon.js -------------------------------------------------------------------------------- /tests/cinnamon/canonical/build/cinnamon_emb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/cinnamon/canonical/build/cinnamon_emb.js -------------------------------------------------------------------------------- /tests/cinnamon/cinnamon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/cinnamon/cinnamon.md -------------------------------------------------------------------------------- /tests/cinnamon/original/cinnamon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/cinnamon/original/cinnamon.md -------------------------------------------------------------------------------- /tests/csv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/csv/.gitignore -------------------------------------------------------------------------------- /tests/csv/canonical/build/out.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/csv/canonical/build/out.csv -------------------------------------------------------------------------------- /tests/csv/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/csv/project.md -------------------------------------------------------------------------------- /tests/date/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/date/.gitignore -------------------------------------------------------------------------------- /tests/date/canonical/build/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/date/canonical/build/out.txt -------------------------------------------------------------------------------- /tests/date/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/date/project.md -------------------------------------------------------------------------------- /tests/fence/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/fence/.gitignore -------------------------------------------------------------------------------- /tests/fence/canonical/build/fence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/fence/canonical/build/fence.txt -------------------------------------------------------------------------------- /tests/fence/fence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/fence/fence.md -------------------------------------------------------------------------------- /tests/fence/original/fence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/fence/original/fence.md -------------------------------------------------------------------------------- /tests/first/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/first/.gitignore -------------------------------------------------------------------------------- /tests/first/canonical/build/first.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/first/canonical/build/first.txt -------------------------------------------------------------------------------- /tests/first/first.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/first/first.md -------------------------------------------------------------------------------- /tests/first/first.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/first/first.txt -------------------------------------------------------------------------------- /tests/first/second.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/first/second.md -------------------------------------------------------------------------------- /tests/first/toread.txt: -------------------------------------------------------------------------------- 1 | Hi. This is some text. 2 | -------------------------------------------------------------------------------- /tests/fizzbuzz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/fizzbuzz/.gitignore -------------------------------------------------------------------------------- /tests/fizzbuzz/canonical/build/fizzbuzz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/fizzbuzz/canonical/build/fizzbuzz.js -------------------------------------------------------------------------------- /tests/fizzbuzz/fizzbuzz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/fizzbuzz/fizzbuzz.md -------------------------------------------------------------------------------- /tests/fizzbuzz/original/fizzbuzz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/fizzbuzz/original/fizzbuzz.md -------------------------------------------------------------------------------- /tests/he/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/he/.gitignore -------------------------------------------------------------------------------- /tests/he/canonical/build/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/he/canonical/build/out.txt -------------------------------------------------------------------------------- /tests/he/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/he/project.md -------------------------------------------------------------------------------- /tests/integrated/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/integrated/.gitignore -------------------------------------------------------------------------------- /tests/integrated/canonical/build/dev/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/integrated/canonical/build/dev/index.html -------------------------------------------------------------------------------- /tests/integrated/canonical/build/prod/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/integrated/canonical/build/prod/index.html -------------------------------------------------------------------------------- /tests/integrated/integrated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/integrated/integrated.md -------------------------------------------------------------------------------- /tests/integrated/lprc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/integrated/lprc.js -------------------------------------------------------------------------------- /tests/integrated/lprc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/integrated/lprc.md -------------------------------------------------------------------------------- /tests/jstidy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/jstidy/.gitignore -------------------------------------------------------------------------------- /tests/jstidy/canonical/build/jstidytest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/jstidy/canonical/build/jstidytest.js -------------------------------------------------------------------------------- /tests/jstidy/jstidy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/jstidy/jstidy.md -------------------------------------------------------------------------------- /tests/jstidy/original/jstidy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/jstidy/original/jstidy.md -------------------------------------------------------------------------------- /tests/lodash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/lodash/.gitignore -------------------------------------------------------------------------------- /tests/lodash/canonical/build/out.txt: -------------------------------------------------------------------------------- 1 | -----00dude??00 2 | -------------------------------------------------------------------------------- /tests/lodash/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/lodash/project.md -------------------------------------------------------------------------------- /tests/logs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/logs/.gitignore -------------------------------------------------------------------------------- /tests/logs/canonical/build/logs.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/logs/canonical/build/logs.htm -------------------------------------------------------------------------------- /tests/logs/canonical/build/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/logs/canonical/build/logs.html -------------------------------------------------------------------------------- /tests/logs/canonicalold/build/logs.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/logs/canonicalold/build/logs.htm -------------------------------------------------------------------------------- /tests/logs/canonicalold/build/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/logs/canonicalold/build/logs.html -------------------------------------------------------------------------------- /tests/logs/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/logs/logs.md -------------------------------------------------------------------------------- /tests/logs/lprc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/logs/lprc.js -------------------------------------------------------------------------------- /tests/logs/original/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/logs/original/logs.md -------------------------------------------------------------------------------- /tests/lprc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/lprc.js -------------------------------------------------------------------------------- /tests/matrix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/matrix/.gitignore -------------------------------------------------------------------------------- /tests/matrix/canonical/build/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/matrix/canonical/build/out.txt -------------------------------------------------------------------------------- /tests/matrix/matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/matrix/matrix.md -------------------------------------------------------------------------------- /tests/primes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/primes/.gitignore -------------------------------------------------------------------------------- /tests/primes/canonical/out.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/primes/canonical/out.test -------------------------------------------------------------------------------- /tests/primes/original/primes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/primes/original/primes.md -------------------------------------------------------------------------------- /tests/primes/primes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/primes/primes.md -------------------------------------------------------------------------------- /tests/sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/sample/.gitignore -------------------------------------------------------------------------------- /tests/sample/canonical/build/count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/sample/canonical/build/count.js -------------------------------------------------------------------------------- /tests/sample/original/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/sample/original/sample.md -------------------------------------------------------------------------------- /tests/sample/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/sample/sample.md -------------------------------------------------------------------------------- /tests/template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/template/.gitignore -------------------------------------------------------------------------------- /tests/template/canonical/build/first.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/template/canonical/build/first.html -------------------------------------------------------------------------------- /tests/template/canonical/build/out.txt: -------------------------------------------------------------------------------- 1 | great: How are you? 2 | 3 | bye 4 | -------------------------------------------------------------------------------- /tests/template/canonical/build/snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/template/canonical/build/snippet -------------------------------------------------------------------------------- /tests/template/original/simpletemp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/template/original/simpletemp.md -------------------------------------------------------------------------------- /tests/template/original/templating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/template/original/templating.md -------------------------------------------------------------------------------- /tests/template/simpletemp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/template/simpletemp.md -------------------------------------------------------------------------------- /tests/template/templating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/template/templating.md -------------------------------------------------------------------------------- /tests/testpro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/testpro/.gitignore -------------------------------------------------------------------------------- /tests/testpro/canonical/build/just-talk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/testpro/canonical/build/just-talk -------------------------------------------------------------------------------- /tests/testpro/canonical/build/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/testpro/canonical/build/out.txt -------------------------------------------------------------------------------- /tests/testpro/canonical/build/testpro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/testpro/canonical/build/testpro.js -------------------------------------------------------------------------------- /tests/testpro/original/period.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/testpro/original/period.md -------------------------------------------------------------------------------- /tests/testpro/original/testpro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/testpro/original/testpro.md -------------------------------------------------------------------------------- /tests/testpro/period.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/testpro/period.md -------------------------------------------------------------------------------- /tests/testpro/testpro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jostylr/literate-programming/HEAD/tests/testpro/testpro.md --------------------------------------------------------------------------------