diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for blizzard-html
 
+## 0.4.0.1 -- 2022-07-22
+
+* Exported Text and added text function.
+
 ## 0.4.0.0 -- 2022-07-22
 
 * Added additional attributes.
diff --git a/blizzard-html.cabal b/blizzard-html.cabal
--- a/blizzard-html.cabal
+++ b/blizzard-html.cabal
@@ -19,7 +19,7 @@
 name:               blizzard-html
 stability:          Experimental
 synopsis:           An HTML renderer for Haskell
-version:            0.4.0.0
+version:            0.4.0.1
 
 
 library
diff --git a/src/Blizzard/Html.hs b/src/Blizzard/Html.hs
--- a/src/Blizzard/Html.hs
+++ b/src/Blizzard/Html.hs
@@ -3,6 +3,7 @@
 module Blizzard.Html
     ( Attribute
     , Html
+    , Text
     , docType
     , docTypeHtml
     , a
@@ -100,6 +101,7 @@
     , table
     , tbody
     , td
+    , text
     , textarea
     , tfoot
     , th
@@ -116,6 +118,7 @@
     ) where
 
 
+import Data.Text (Text)
 import Prelude (Maybe)
 import Text.Blaze.Html (Attribute, Html)
 
@@ -510,6 +513,10 @@
 
 td :: [Maybe Attribute] -> [Html] -> Html
 td = normalTag Html.td
+
+
+text :: Text -> Html
+text = Html.toHtml
 
 
 textarea :: [Maybe Attribute] -> [Html] -> Html
