aboutsummaryrefslogtreecommitdiff
path: root/xohtml/xohtml.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'xohtml/xohtml.sh.in')
-rw-r--r--xohtml/xohtml.sh.in9
1 files changed, 6 insertions, 3 deletions
diff --git a/xohtml/xohtml.sh.in b/xohtml/xohtml.sh.in
index a15d82e3276a..f6c2fdbc99ff 100644
--- a/xohtml/xohtml.sh.in
+++ b/xohtml/xohtml.sh.in
@@ -57,7 +57,8 @@ if [ "$CMD" = "cat" -a -t 0 ]; then
do_help
fi
-echo "<html>\n<head>\n"
+echo '<html>'
+echo '<head>'
echo '<meta http-equiv="content-type" content="text/html; charset=utf-8"/>'
echo '<link rel="stylesheet" href="'$BASE'/xohtml.css">'
echo '<link rel="stylesheet" href="'$BASE'/external/jquery.qtip.css"/>'
@@ -66,10 +67,12 @@ echo '<script type="text/javascript" src="'$BASE'/external/jquery.qtip.js"></scr
echo '<script type="text/javascript" src="'$BASE'/xohtml.js"></script>'
echo '<script>'
echo '</script>'
-echo "</head>\n<body>\n"
+echo '</head>'
+echo '<body>'
$CMD
-echo "</body>\n</html>\n"
+echo '</body>'
+echo '</html>'
exit 0