mirror of
https://github.com/dhewm/dhewm.github.io.git
synced 2024-11-10 07:11:47 +00:00
057b8db187
the text-heavy sections of index.html (About, News, How to Install) are now generated from MD, which makes writing them less painful.
5 lines
130 B
Bash
Executable file
5 lines
130 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cat index.html_part1 > index.html
|
|
pandoc -f markdown -t html index.md >> index.html
|
|
cat index.html_part3 >> index.html
|