diff --git a/QuasiText.cabal b/QuasiText.cabal
--- a/QuasiText.cabal
+++ b/QuasiText.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                QuasiText
-version:             0.1.2.4
+version:             0.1.2.5
 synopsis:            A QuasiQuoter for Text.
 description:         A QuasiQuoter for interpolating values into Text strings.
 homepage:            https://github.com/mikeplus64/QuasiText
@@ -16,6 +16,5 @@
 
 library
   exposed-modules:     Text.QuasiText
-  -- other-modules:       
   build-depends:       base >= 4.5.0.0 && < 5.0.0.0, template-haskell, haskell-src-meta, attoparsec, text
   hs-source-dirs:      src
diff --git a/src/Text/QuasiText.hs b/src/Text/QuasiText.hs
--- a/src/Text/QuasiText.hs
+++ b/src/Text/QuasiText.hs
@@ -90,7 +90,7 @@
             _ -> return [expr, T.singleton paren]
 
     parser :: Parser [Chunk]
-    parser = fmap concat $ flip manyTill (endOfInput <|> endOfLine) $ do
+    parser = fmap concat $ flip manyTill endOfInput $ do
         text <- takeTill (== '$')
         end  <- atEnd
         if end
