diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.3.0.1 #
+
+* Hyperlink Haddock of re-exported modules to the other packages.
+
 # 0.3 #
 
 * Broke package up into `indentation-core`, `indentation-parsec` and `indentation-trifecta` packages.
diff --git a/indentation.cabal b/indentation.cabal
--- a/indentation.cabal
+++ b/indentation.cabal
@@ -1,5 +1,5 @@
 name:                indentation
-version:             0.3
+version:             0.3.0.1
 synopsis:            Indentation sensitive parsing combinators for Parsec and Trifecta
 description:         Indentation sensitive parsing combinators for Parsec and Trifecta.
                      .                     
diff --git a/src/Text/Parsec/Indentation.hs b/src/Text/Parsec/Indentation.hs
--- a/src/Text/Parsec/Indentation.hs
+++ b/src/Text/Parsec/Indentation.hs
@@ -1,4 +1,5 @@
 {-# language PackageImports #-}
+-- | This module re-exports <https://hackage.haskell.org/package/indentation-parsec/docs/Text-Parsec-Indentation.html Text.Parsec.Indentation> from <https://hackage.haskell.org/package/indentation-parsec indentation-parsec>.
 module Text.Parsec.Indentation (module Impl) where
 
 import "indentation-parsec" Text.Parsec.Indentation as Impl
diff --git a/src/Text/Parsec/Indentation/Char.hs b/src/Text/Parsec/Indentation/Char.hs
--- a/src/Text/Parsec/Indentation/Char.hs
+++ b/src/Text/Parsec/Indentation/Char.hs
@@ -1,4 +1,5 @@
 {-# language PackageImports #-}
+-- | This module re-exports <https://hackage.haskell.org/package/indentation-parsec/docs/Text-Parsec-Indentation-Char.html Text.Parsec.Indentation.Char> from <https://hackage.haskell.org/package/indentation-parsec indentation-parsec>.
 module Text.Parsec.Indentation.Char (module Impl) where
 
 import "indentation-parsec" Text.Parsec.Indentation.Char as Impl
diff --git a/src/Text/Parsec/Indentation/Token.hs b/src/Text/Parsec/Indentation/Token.hs
--- a/src/Text/Parsec/Indentation/Token.hs
+++ b/src/Text/Parsec/Indentation/Token.hs
@@ -1,4 +1,5 @@
 {-# language PackageImports #-}
+-- | This module re-exports <https://hackage.haskell.org/package/indentation-parsec/docs/Text-Parsec-Indentation-Token.html Text.Parsec.Indentation.Token> from <https://hackage.haskell.org/package/indentation-parsec indentation-parsec>.
 module Text.Parsec.Indentation.Token (module Impl) where
 
 import "indentation-parsec" Text.Parsec.Indentation.Token as Impl
diff --git a/src/Text/Parser/Indentation/Implementation.hs b/src/Text/Parser/Indentation/Implementation.hs
--- a/src/Text/Parser/Indentation/Implementation.hs
+++ b/src/Text/Parser/Indentation/Implementation.hs
@@ -1,5 +1,5 @@
 {-# language PackageImports #-}
-
+-- | This module re-exports <https://hackage.haskell.org/package/indentation-core/docs/Text-Parser-Indentation-Implementation.html Text.Parser.Indentation.Implementation> from <https://hackage.haskell.org/package/indentation-core indentation-core>.
 module Text.Parser.Indentation.Implementation (module Impl)
        where
 
diff --git a/src/Text/Trifecta/Indentation.hs b/src/Text/Trifecta/Indentation.hs
--- a/src/Text/Trifecta/Indentation.hs
+++ b/src/Text/Trifecta/Indentation.hs
@@ -1,4 +1,5 @@
 {-# language PackageImports #-}
+-- | This module re-exports <https://hackage.haskell.org/package/indentation-trifecta/docs/Text-Trifecta-Indentation.html Text.Trifecta.Indentation> from <https://hackage.haskell.org/package/indentation-trifecta indentation-trifecta>.
 module Text.Trifecta.Indentation (module Impl) where
 
-import "indentation-trifecta" Text.Trifecta.Indentation as Impl
+import "indentation-trifecta" Text.Trifecta.Indentation as Impl hiding (Token)
