add a way to build an offline copy of the documentation

that looks pretty shitty :)
replace_gw-core01
Gregor Michels 2022-07-03 02:12:11 +02:00
parent 8969c14c64
commit 75549ae079
3 changed files with 10 additions and 0 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
ansible-facts.json/
*.html

View File

@ -12,6 +12,7 @@ This repo contains the config and documentation for our installation at the "Ers
requirements:
* `ansible`
* `pandoc` (for offline documentation generation)
* `pass`
### Password Manager

8
documentation/build Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
set -e
find -type f -name '*.md' | while read file
do
pandoc -i $file -o ${file}.html
done