pandoc

Articles with this tag

programming

litpd easier to install with simplified tangling

I made two releases of litpd yesterday, the first focused on moving away from lua/shell for orchestration to python and the second one simplified the tangling process and packaged litpd for deployment on PyPI.

litpd is a tool for literate programming with Pandoc: write a program and its explanation in one Markdown document, then generate both documentation and source files. Learn more at the litpd site.

litpd itself is written as a literate program in pandoc markdown, and its documentation and code are generated using litpd itself via a bootstrapping process

The latest release is v0.3.1b0

PyPI …

programming

First beta release of litpd

litpd is a simple literate programming tool built on markdown. It uses pandoc and some lua code to build both a readable and runnable version of the same program from one markdown document. The litpd program is itself written as a literate program.

The first beta version of litpd is out. This release contains several bug-fixes, and a significant change to support linux and macos using litpd.sh (bash script).

Also new is a new github pages website which is the entire litpd program as its own standalone website. See it here https://abhishekmishra.github.io/litpd/.

This is the …