summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Textile.hs
diff options
context:
space:
mode:
authorPaul Rivier <paul.r.ml@gmail.com>2010-10-03 20:55:46 +0200
committerJohn MacFarlane <jgm@berkeley.edu>2010-12-03 23:10:51 -0800
commita7da0672dc9bc9e362f62a4de5ab14bffd0e86bc (patch)
treebd0c21a36799ec3cba1d8f6169ab96083f2fc6b4 /src/Text/Pandoc/Readers/Textile.hs
parentcfc70863a3a87083749e29df26f696b17033e448 (diff)
more support for Textile reader (explicit links, images), tests and cabal entries
Diffstat (limited to 'src/Text/Pandoc/Readers/Textile.hs')
-rw-r--r--src/Text/Pandoc/Readers/Textile.hs61
1 files changed, 44 insertions, 17 deletions
diff --git a/src/Text/Pandoc/Readers/Textile.hs b/src/Text/Pandoc/Readers/Textile.hs
index 3d759a944..5e4609c01 100644
--- a/src/Text/Pandoc/Readers/Textile.hs
+++ b/src/Text/Pandoc/Readers/Textile.hs
@@ -25,15 +25,16 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Stability : alpha
Portability : portable
-Conversion from Textile to 'Pandoc' document.
+Conversion from Textile to 'Pandoc' document, based on the spec
+available at http://redcloth.org/hobix.com/textile/
Implemented :
- Paragraphs
- Code blocks
- Lists
- blockquote
- - Inlines : strong, emph, cite, code, deleted, inserted, superscript, subscript
-
+ - Inlines : strong, emph, cite, code, deleted, inserted, superscript,
+ subscript, links
Not implemented :
- HTML-specific and CSS-specific inlines
@@ -189,6 +190,7 @@ tableRow :: GenParser Char ParserState [TableCell]
tableRow = try $ do
char '|'
cells <- endBy1 tableCell (char '|')
+ -- TODO : don't eat the last newline
newline
return cells
@@ -206,25 +208,27 @@ tableHeaders = try $ do
newline
return headers
--- | A table with an optional header
+-- | A table with an optional header. Current implementation can
+-- handle tables with and without header, but will parse cells
+-- alignment attributes as content.
table :: GenParser Char ParserState Block
table = try $ do
headers <- option [] tableHeaders
rows <- tableRows
+ let nbOfCols = max (length headers) (length $ head rows)
return $ Table []
- (replicate (length headers) AlignDefault)
- (replicate (length headers) 0.0)
+ (replicate nbOfCols AlignDefault)
+ (replicate nbOfCols 0.0)
headers
rows
+
----------
-- Inlines
----------
-
-
-- | Any inline element
inline :: GenParser Char ParserState Inline
inline = choice inlineParsers <?> "inline"
@@ -248,10 +252,10 @@ inlineParsers = [ str
, simpleInline (char '+') Inserted
, simpleInline (char '^') Superscript
, simpleInline (char '~') Subscript
- -- , link
- -- , image
- -- , math
- -- , autoLink
+ , link
+ , autoLink
+ , image
+ , image
, symbol
]
@@ -270,6 +274,29 @@ endline = try $ do
newline >> notFollowedBy blankline
return Space
+link :: GenParser Char ParserState Inline
+link = try $ do
+ name <- surrounded (char '"') inline
+ char ':'
+ url <- manyTill (anyChar) (lookAhead $ (space <|> try (oneOf ".;," >> (space <|> newline))))
+ return $ Link name (url, "")
+
+-- | Detect plain links to http or email.
+autoLink :: GenParser Char ParserState Inline
+autoLink = do
+ (orig, src) <- uri -- (try uri <|> try emailAddress)
+ return $ Link [Str orig] (src, "")
+
+-- | image embedding
+image :: GenParser Char ParserState Inline
+image = try $ do
+ char '!' >> notFollowedBy space
+ src <- manyTill anyChar (lookAhead $ oneOf "!(")
+ 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
symbol = do
@@ -297,9 +324,9 @@ simpleInline border construct = surrounded border inline >>=
-- TODO
--
--- - Pandoc Meta Information
+-- - Pandoc Meta Information (title, author, date)
-- - footnotes
--- - hyperlink "label":target
--- - tables alignments
--- - tests
--- - Inserted inline handling in writers \ No newline at end of file
+-- - autolink is not called
+-- - should autolink be shared through Parsing.hs ?
+-- - Inserted inline handling in writers
+-- - table parser is a bit too greedy and require a double newline after tables \ No newline at end of file