Note generating application in a container
usage: notegen [-h] [-d] [-v] file
positional arguments:
file name of the markdown file to use
optional arguments:
-h, --help show this help message and exit
-d, --docx also generate a docx file
-v, --verbose Make the output verbose
You can use notegen
separately, or as a docker container. If you want to use notegen
without using the container, please see
roaldnefs/writeup-template
for the dependencies of notegen
and pandoc
.
docker pull kyentei/notegen:latest
docker build . -t kyentei/notegen:latest
To generate a PDF
docker run -v $(pwd):/data:ro kyentei/notegen /data/example.md > example.pdf