mirror of
https://github.com/dhewm/dhewm.github.io.git
synced 2024-11-10 07:11:47 +00:00
3c8113b2b7
(not linked from index yet, some of the links will only work once 1.5.0 is released)
9 lines
245 B
Bash
Executable file
9 lines
245 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
|
|
|
|
cat mods.html_part1 > mods.html
|
|
pandoc -f markdown -t html mods.md >> mods.html
|
|
cat index.html_part3 >> mods.html
|