From 7c13402057df5ddefef2d13b90fae0e102647d0c Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Sun, 30 Apr 2017 20:28:31 -0400
Subject: [PATCH] Compiler changes.

---
 compile     | 3 +++
 compile-git | 5 ++++-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/compile b/compile
index d0a52d7749a..1ae24f69d1f 100755
--- a/compile
+++ b/compile
@@ -18,4 +18,7 @@ else
 	./devTools/tweeGo/tweego_nix86 -o bin/FC_pregmod.html src/config/start.tw
 fi
 
+#Make the output prettier, replacing \t with a tab and \n with a newline
+sed -i -e '/^.*<div id="store-area".*$/s/\\t/\t/g' -e '/^.*<div id="store-area".*$/s/\\n/\n/g'  bin/FC_pregmod.html
+
 rm -f src/config/start.tw
diff --git a/compile-git b/compile-git
index deb180dbb06..ddcaaec22b0 100755
--- a/compile-git
+++ b/compile-git
@@ -18,6 +18,9 @@ else
 	./devTools/tweeGo/tweego_nix86 -o bin/FC_pregmod_$HASH.html src/config/start.tw
 fi
 
+#Make the output prettier, replacing \t with a tab and \n with a newline
+sed -i -e '/^<div id="store-area".*$/s/\\t/\t/g' -e '/^<div id="store-area".*$/s/\\n/\n/g'  bin/FC_pregmod.html
+
 rm -f src/config/start.tw
 
-echo "FC_pregmod_$HASH.html" compilation finished.
\ No newline at end of file
+echo "FC_pregmod_$HASH.html" compilation finished.
-- 
GitLab