The Markdown files can be generated with the following
command docker run -v $(pwd):/app ghcr.io/ashleycaselli/md-generator
.
NB: the default configuration requires a refs.bib
file in the current working directory ($pwd
). The output files can
be found in the pubs
folder that will be created in the current working directory.
In case you would like to change the input/output configuration, you can do it using environment variables.
BIB_FILE
: name of the .bib
file with the references
OUT_PATH
: path of the output directory
docker run -v $(pwd)/tmp:/app/tmp --env BIB_FILE=tmp/refs.bib --env OUT_PATH=tmp/ ghcr.io/ashleycaselli/md-generator
docker run -v $(pwd)/tmp:/app/tmp --env-file .env ghcr.io/ashleycaselli/md-generator
This project was forked and originally based on the work of Stuart Geiger.