├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin └── lcmark ├── filters ├── count_links.lua ├── highlight.lua └── include.lua ├── lcmark.1 ├── lcmark.1.md ├── lcmark.lua ├── rockspec.in ├── standalone ├── Makefile └── main.c ├── templates ├── default.html ├── default.man └── simple.latex ├── test.t └── tests ├── bad_filter.lua ├── bad_filter2.lua ├── bad_filter3.lua └── spec-tests.lua /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/README.md -------------------------------------------------------------------------------- /bin/lcmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/bin/lcmark -------------------------------------------------------------------------------- /filters/count_links.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/filters/count_links.lua -------------------------------------------------------------------------------- /filters/highlight.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/filters/highlight.lua -------------------------------------------------------------------------------- /filters/include.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/filters/include.lua -------------------------------------------------------------------------------- /lcmark.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/lcmark.1 -------------------------------------------------------------------------------- /lcmark.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/lcmark.1.md -------------------------------------------------------------------------------- /lcmark.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/lcmark.lua -------------------------------------------------------------------------------- /rockspec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/rockspec.in -------------------------------------------------------------------------------- /standalone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/standalone/Makefile -------------------------------------------------------------------------------- /standalone/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/standalone/main.c -------------------------------------------------------------------------------- /templates/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/templates/default.html -------------------------------------------------------------------------------- /templates/default.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/templates/default.man -------------------------------------------------------------------------------- /templates/simple.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/templates/simple.latex -------------------------------------------------------------------------------- /test.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/test.t -------------------------------------------------------------------------------- /tests/bad_filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/tests/bad_filter.lua -------------------------------------------------------------------------------- /tests/bad_filter2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/tests/bad_filter2.lua -------------------------------------------------------------------------------- /tests/bad_filter3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/tests/bad_filter3.lua -------------------------------------------------------------------------------- /tests/spec-tests.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/lcmark/HEAD/tests/spec-tests.lua --------------------------------------------------------------------------------