Skip to content
Snippets Groups Projects
Commit 20b12548 authored by Stefan Hynek's avatar Stefan Hynek :drooling_face:
Browse files

docs(readme): add command for locally building the pdf with docker

parent 24b2ba64
No related branches found
No related tags found
1 merge request!37fix compile job
...@@ -8,6 +8,12 @@ To create main markdown document and compile to PDF, use ...@@ -8,6 +8,12 @@ To create main markdown document and compile to PDF, use
cat technical-reference-main.txt | while read LINE; do cat $LINE >> technical-reference.md ; done cat technical-reference-main.txt | while read LINE; do cat $LINE >> technical-reference.md ; done
pandoc --template=rdd.latex technical-reference.md -o technical-reference.pdf pandoc --template=rdd.latex technical-reference.md -o technical-reference.pdf
``` ```
or, for the use with docker
```bash
cat technical-reference-main.txt | while read LINE; do cat $LINE >> technical-reference.md ; done
docker run --rm pandoc/latex -v .:/data pandoc --template=rdd.latex technical-reference.md -o technical-reference.pdf
```
Inspired by the [EURISE Network Technical Reference](https://github.com/eurise-network/technical-reference). Inspired by the [EURISE Network Technical Reference](https://github.com/eurise-network/technical-reference).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment