]> de.git.xonotic.org Git - xonotic/xonotic.wiki.git/blobdiff - assets/convert.sh
script for checking links
[xonotic/xonotic.wiki.git] / assets / convert.sh
diff --git a/assets/convert.sh b/assets/convert.sh
deleted file mode 100755 (executable)
index e7d4a55..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-# Textile to Markdown in-place conversion
-for file in `ls *.md`; do
-       [ -f ${file} ] && [ ! -h ${file} ] || continue
-       pandoc -f textile -t markdown_github ${file} > ${file}.bak
-       mv ${file}.bak ${file}
-done