https://github.com/boardfish/md2pdf
Convert Markdown files to a LaTeX PDF
https://github.com/boardfish/md2pdf
Last synced: 3 months ago
JSON representation
Convert Markdown files to a LaTeX PDF
- Host: GitHub
- URL: https://github.com/boardfish/md2pdf
- Owner: boardfish
- Created: 2019-03-21T15:52:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-21T16:20:03.000Z (about 6 years ago)
- Last Synced: 2025-01-02T19:42:13.611Z (5 months ago)
- Language: Dockerfile
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Markdown to PDF
## Usage
Give it a list of markdown files and mount the directory you want to use to /source:
Also works with any Bibtex bibliographies (through pandoc-citeproc) and images you have in the folder.
```
docker run --rm -v $(pwd):/source boardfish/md2pdf *.md
```It's also possible to set the `date` and other variables inline:
```
docker run --rm -v $(pwd):/source boardfish/md2pdf --variable date=$(date "+%Y-%m-%d") *.md
```