diff options
author | Paul Rivier <paul.r.ml@gmail.com> | 2010-10-04 21:00:32 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2010-12-03 23:10:51 -0800 |
commit | e6dde36622bc1f4adbd34934213cbcfb091376a2 (patch) | |
tree | 18c1a73c68f5a30d78ecc0b6fcdbfcd139943690 /src/Text/Pandoc/Readers | |
parent | 593b4f6c948f2b32c6fef170a37d725285c8e9c4 (diff) | |
download | pandoc-e6dde36622bc1f4adbd34934213cbcfb091376a2.tar.gz |
removed support for textile Inserted construct
Diffstat (limited to 'src/Text/Pandoc/Readers')
-rw-r--r-- | src/Text/Pandoc/Readers/Textile.hs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Text/Pandoc/Readers/Textile.hs b/src/Text/Pandoc/Readers/Textile.hs index 463ba14be..9c6e8f937 100644 --- a/src/Text/Pandoc/Readers/Textile.hs +++ b/src/Text/Pandoc/Readers/Textile.hs @@ -33,7 +33,7 @@ Implemented : - Code blocks - Lists - blockquote - - Inlines : strong, emph, cite, code, deleted, inserted, superscript, + - Inlines : strong, emph, cite, code, deleted, superscript, subscript, links Not implemented : @@ -250,7 +250,6 @@ inlineParsers = [ autoLink , simpleInline (char '*') Strong , simpleInline (char '_') Emph , simpleInline (char '-') Strikeout - , simpleInline (char '+') Inserted , simpleInline (char '^') Superscript , simpleInline (char '~') Subscript , link @@ -286,7 +285,6 @@ autoLink = do (orig, src) <- (try uri <|> try emailAddress) return $ Link [Str orig] (src, "") - -- | image embedding image :: GenParser Char ParserState Inline image = try $ do @@ -295,7 +293,6 @@ image = try $ do alt <- option "" (try $ (char '(' >> manyTill anyChar (char ')'))) char '!' return $ Image [Str alt] (src, alt) - -- | Any special symbol defined in specialChars symbol :: GenParser Char ParserState Inline @@ -327,4 +324,3 @@ simpleInline border construct = surrounded border inline >>= -- - Pandoc Meta Information (title, author, date) -- - footnotes -- - should autolink be shared through Parsing.hs ? --- - Inserted inline handling in writers |