├── .gitignore ├── Makefile ├── NOTICE ├── README.md ├── bin ├── MARKEDOC-README.md └── markedoc.sed ├── doc ├── edoc-info ├── edown_doclet.md ├── edown_layout.md ├── edown_lib.md ├── edown_make.md ├── edown_xmerl.md └── overview.edoc ├── edown_make ├── make_doc ├── priv └── scripts │ ├── check_edown.script │ ├── rebar.config.script │ └── remove_deps.script ├── rebar ├── rebar.config ├── samples ├── .gitignore ├── README.md └── markedoc │ ├── SAMPLE1.md │ ├── SAMPLE2.md │ ├── SAMPLE3.md │ ├── doc │ ├── erlang.png │ ├── markedoc-footer.png │ ├── markedoc.css │ └── overview.edoc │ ├── make_samples.sh │ ├── test-bsd.sh │ ├── test-linux.sh │ ├── test-macosx.sh │ ├── what-you-should-see │ ├── SAMPLE1.edoc │ ├── SAMPLE2.edoc │ ├── SAMPLE3.edoc │ ├── erlang.png │ ├── markedoc-footer.png │ ├── markedoc.css │ ├── sample1.html │ ├── sample2.html │ ├── sample3.html │ └── stylesheet.css │ └── your-test-results │ ├── erlang.png │ ├── markedoc-footer.png │ ├── markedoc.css │ └── stylesheet.css └── src ├── edown.app.src ├── edown_doclet.erl ├── edown_layout.erl ├── edown_lib.erl ├── edown_make.erl └── edown_xmerl.erl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/README.md -------------------------------------------------------------------------------- /bin/MARKEDOC-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/bin/MARKEDOC-README.md -------------------------------------------------------------------------------- /bin/markedoc.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/bin/markedoc.sed -------------------------------------------------------------------------------- /doc/edoc-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/doc/edoc-info -------------------------------------------------------------------------------- /doc/edown_doclet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/doc/edown_doclet.md -------------------------------------------------------------------------------- /doc/edown_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/doc/edown_layout.md -------------------------------------------------------------------------------- /doc/edown_lib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/doc/edown_lib.md -------------------------------------------------------------------------------- /doc/edown_make.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/doc/edown_make.md -------------------------------------------------------------------------------- /doc/edown_xmerl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/doc/edown_xmerl.md -------------------------------------------------------------------------------- /doc/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/doc/overview.edoc -------------------------------------------------------------------------------- /edown_make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/edown_make -------------------------------------------------------------------------------- /make_doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/make_doc -------------------------------------------------------------------------------- /priv/scripts/check_edown.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/priv/scripts/check_edown.script -------------------------------------------------------------------------------- /priv/scripts/rebar.config.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/priv/scripts/rebar.config.script -------------------------------------------------------------------------------- /priv/scripts/remove_deps.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/priv/scripts/remove_deps.script -------------------------------------------------------------------------------- /rebar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/rebar -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/rebar.config -------------------------------------------------------------------------------- /samples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/.gitignore -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/markedoc/SAMPLE1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/SAMPLE1.md -------------------------------------------------------------------------------- /samples/markedoc/SAMPLE2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/SAMPLE2.md -------------------------------------------------------------------------------- /samples/markedoc/SAMPLE3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/SAMPLE3.md -------------------------------------------------------------------------------- /samples/markedoc/doc/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/doc/erlang.png -------------------------------------------------------------------------------- /samples/markedoc/doc/markedoc-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/doc/markedoc-footer.png -------------------------------------------------------------------------------- /samples/markedoc/doc/markedoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/doc/markedoc.css -------------------------------------------------------------------------------- /samples/markedoc/doc/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/doc/overview.edoc -------------------------------------------------------------------------------- /samples/markedoc/make_samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/make_samples.sh -------------------------------------------------------------------------------- /samples/markedoc/test-bsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/test-bsd.sh -------------------------------------------------------------------------------- /samples/markedoc/test-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/test-linux.sh -------------------------------------------------------------------------------- /samples/markedoc/test-macosx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/test-macosx.sh -------------------------------------------------------------------------------- /samples/markedoc/what-you-should-see/SAMPLE1.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/what-you-should-see/SAMPLE1.edoc -------------------------------------------------------------------------------- /samples/markedoc/what-you-should-see/SAMPLE2.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/what-you-should-see/SAMPLE2.edoc -------------------------------------------------------------------------------- /samples/markedoc/what-you-should-see/SAMPLE3.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/what-you-should-see/SAMPLE3.edoc -------------------------------------------------------------------------------- /samples/markedoc/what-you-should-see/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/what-you-should-see/erlang.png -------------------------------------------------------------------------------- /samples/markedoc/what-you-should-see/markedoc-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/what-you-should-see/markedoc-footer.png -------------------------------------------------------------------------------- /samples/markedoc/what-you-should-see/markedoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/what-you-should-see/markedoc.css -------------------------------------------------------------------------------- /samples/markedoc/what-you-should-see/sample1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/what-you-should-see/sample1.html -------------------------------------------------------------------------------- /samples/markedoc/what-you-should-see/sample2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/what-you-should-see/sample2.html -------------------------------------------------------------------------------- /samples/markedoc/what-you-should-see/sample3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/what-you-should-see/sample3.html -------------------------------------------------------------------------------- /samples/markedoc/what-you-should-see/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/what-you-should-see/stylesheet.css -------------------------------------------------------------------------------- /samples/markedoc/your-test-results/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/your-test-results/erlang.png -------------------------------------------------------------------------------- /samples/markedoc/your-test-results/markedoc-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/your-test-results/markedoc-footer.png -------------------------------------------------------------------------------- /samples/markedoc/your-test-results/markedoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/your-test-results/markedoc.css -------------------------------------------------------------------------------- /samples/markedoc/your-test-results/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/samples/markedoc/your-test-results/stylesheet.css -------------------------------------------------------------------------------- /src/edown.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/src/edown.app.src -------------------------------------------------------------------------------- /src/edown_doclet.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/src/edown_doclet.erl -------------------------------------------------------------------------------- /src/edown_layout.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/src/edown_layout.erl -------------------------------------------------------------------------------- /src/edown_lib.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/src/edown_lib.erl -------------------------------------------------------------------------------- /src/edown_make.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/src/edown_make.erl -------------------------------------------------------------------------------- /src/edown_xmerl.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esl/edown/HEAD/src/edown_xmerl.erl --------------------------------------------------------------------------------