5
0
Fork 0

Moar wild things

This commit is contained in:
Nick Hahn 2021-05-14 14:25:40 +02:00
parent ee6263612a
commit 82145f8b14
3 changed files with 24 additions and 4 deletions

View file

@ -1,3 +1,16 @@
# hedgedoc2pdf
Shellscript that converts a hedgedoc pad to pdf using pandoc
Shellscript that converts a hedgedoc pad to pdf using pandoc
You also need the python package `pandoc-latex-environment`.
Because of this, install the package in an virtual environment.
```
python -m venv venv
source venv/bin/activate
pip install pandoc-latex-environment
```
```
wget https://md.margau.net/19IN-4Sem-SuSII-Zusammenfassung/download -O - | cat header.md - | sed -E -f test.sed | pandoc --filter pandoc-latex-environment --number-sections -i wilde_definitionen.md - -o main.pdf
```