diff --git a/lucid.cabal b/lucid.cabal
--- a/lucid.cabal
+++ b/lucid.cabal
@@ -1,5 +1,5 @@
 name:                lucid
-version:             2.2
+version:             2.3
 synopsis:            Clear to write, read and edit DSL for HTML
 description:         Clear to write, read and edit DSL for HTML. See the 'Lucid' module
                      for description and documentation.
diff --git a/src/Lucid.hs b/src/Lucid.hs
--- a/src/Lucid.hs
+++ b/src/Lucid.hs
@@ -21,6 +21,7 @@
   ,runHtmlT
    -- * Types
   ,Html
+  ,HtmlT
   ,Attribute
    -- * Classes
    -- $overloaded
diff --git a/test/Main.hs b/test/Main.hs
--- a/test/Main.hs
+++ b/test/Main.hs
@@ -184,7 +184,7 @@
 testSelfClosing :: Spec
 testSelfClosing =
   do it "br" (renderText (br_ []) == "<br>")
-     it "hr" (renderText (hr_ []) == "<br>")
+     it "hr" (renderText (hr_ []) == "<hr>")
      it "input"
         (renderText (input_ []) ==
          "<input>")
