diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,11 @@
 # Changelog for vega-view
 
+## 0.3.0.3
+
+Oops: chaning from a bytestring to a text during development caused
+"problems". There really should be a swooshy icon on the home page now,
+and the a text rendering of the SVG...
+
 ## 0.3.0.2
 
 Add a link back to the "home page" in the page header.
diff --git a/app/Main.hs b/app/Main.hs
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -378,7 +378,7 @@
 
         -- embed the SVG directly so we can style it
         (H.div ! A.id "swoosh")
-          (B.text swooshSVG)
+          (B.preEscapedText swooshSVG)
 
       -- since too lazy to set up an onload handler, stick all the JS
       -- here
diff --git a/vega-view.cabal b/vega-view.cabal
--- a/vega-view.cabal
+++ b/vega-view.cabal
@@ -1,5 +1,5 @@
 name:           vega-view
-version:        0.3.0.2
+version:        0.3.0.3
 synopsis:       Easily view Vega or Vega-Lite visualizations.
 description:    A web server that is used to view all the Vega and Vega-Lite
                 specifications in a directory, or sub-directory. It is similar
