From 3a90825f9ec5f138ab65b82d0b1fed14b6996ba8 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 3 Jun 2013 11:29:57 +0200 Subject: [PATCH] Add runner to generate html documentation. Implemented runner which translates each .txt file located in doc/ to html by using markdown. refs #4214 --- bin/createdoc.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 bin/createdoc.sh diff --git a/bin/createdoc.sh b/bin/createdoc.sh new file mode 100755 index 000000000..d64fa10a1 --- /dev/null +++ b/bin/createdoc.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +for filepath in `find ../doc -type f -name "*.txt"`; do + markdown $filepath > `dirname $filepath`/`basename $filepath .txt`.html +done + +exit 0