diff options
author | paul.rivier <paul.r.ml@gmail.com> | 2010-09-16 11:26:12 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2010-12-03 23:10:50 -0800 |
commit | d532c72c5b3249ae83733d9fe064764d123603c0 (patch) | |
tree | aac4917b7e23496d37ce5a2033dfb6bc59940044 /src/Text/Pandoc/Definition.hs | |
parent | 3ffd7246173b8bdc0d25167355f55e3193aaa989 (diff) | |
download | pandoc-d532c72c5b3249ae83733d9fe064764d123603c0.tar.gz |
Basic Textile Reader
Diffstat (limited to 'src/Text/Pandoc/Definition.hs')
-rw-r--r-- | src/Text/Pandoc/Definition.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Definition.hs b/src/Text/Pandoc/Definition.hs index fffca3b2e..0972d5f4c 100644 --- a/src/Text/Pandoc/Definition.hs +++ b/src/Text/Pandoc/Definition.hs @@ -108,6 +108,7 @@ data Inline | Emph [Inline] -- ^ Emphasized text (list of inlines) | Strong [Inline] -- ^ Strongly emphasized text (list of inlines) | Strikeout [Inline] -- ^ Strikeout text (list of inlines) + | Inserted [Inline] -- ^ Underlined text (list of inlines) | Superscript [Inline] -- ^ Superscripted text (list of inlines) | Subscript [Inline] -- ^ Subscripted text (list of inlines) | SmallCaps [Inline] -- ^ Small caps text (list of inlines) |