diff options
-rw-r--r-- | Text/Pandoc/Definition.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Text/Pandoc/Definition.hs b/Text/Pandoc/Definition.hs index a518314a6..04deca1ea 100644 --- a/Text/Pandoc/Definition.hs +++ b/Text/Pandoc/Definition.hs @@ -92,7 +92,8 @@ data Block -- | Type of quotation marks to use in Quoted inline. data QuoteType = SingleQuote | DoubleQuote deriving (Show, Eq, Read) -type Target = (String, String) -- ^ Link target (URL, title) +-- | Link target (URL, title). +type Target = (String, String) -- | Inline elements. data Inline |