summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Org.hs
diff options
context:
space:
mode:
authorAlbert Krewinkel <tarleb@moltkeplatz.de>2014-04-12 00:17:46 +0200
committerAlbert Krewinkel <tarleb@moltkeplatz.de>2014-04-12 10:31:45 +0200
commitae4280fba528efe68c5955cb3ca0779e6910f43b (patch)
treeac2a3221f385294ac56b91ee9f4d0a823aac0f95 /src/Text/Pandoc/Readers/Org.hs
parent8bc09ce6c7ae118318241b0b0a31c946534259c6 (diff)
Org reader: Add support for figures
Support for figures (images with name and caption) is added.
Diffstat (limited to 'src/Text/Pandoc/Readers/Org.hs')
-rw-r--r--src/Text/Pandoc/Readers/Org.hs57
1 files changed, 49 insertions, 8 deletions
diff --git a/src/Text/Pandoc/Readers/Org.hs b/src/Text/Pandoc/Readers/Org.hs
index ceac69367..8f0ce61e0 100644
--- a/src/Text/Pandoc/Readers/Org.hs
+++ b/src/Text/Pandoc/Readers/Org.hs
@@ -37,6 +37,7 @@ import Text.Pandoc.Parsing hiding (newline, orderedListMarker, updateL
import Text.Pandoc.Shared (compactify')
import Control.Applicative (pure, (<$>), (<$), (<*>), (<*), (*>), (<**>))
+import Control.Arrow ((***))
import Control.Monad (guard, when)
import Data.Char (toLower)
import Data.Default
@@ -158,6 +159,7 @@ block = choice [ mempty <$ blanklines
, orgBlock
, example
, drawer
+ , figure
, specialLine
, header
, hline
@@ -252,6 +254,43 @@ drawerEnd = try $
skipSpaces *> stringAnyCase ":END:" <* skipSpaces <* newline
+--
+-- Figures
+--
+
+-- Figures (Image on a line by itself, preceded by name and/or caption)
+figure :: OrgParser Blocks
+figure = try $ do
+ (tit, cap) <- (maybe mempty withFigPrefix *** fromMaybe mempty)
+ <$> nameAndOrCaption
+ src <- skipSpaces *> selfTarget <* skipSpaces <* newline
+ guard (isImageFilename src)
+ return . B.para $ B.image src tit cap
+ where withFigPrefix cs = if "fig:" `isPrefixOf` cs
+ then cs
+ else "fig:" ++ cs
+
+nameAndOrCaption :: OrgParser (Maybe String, Maybe Inlines)
+nameAndOrCaption = try $ nameFirst <|> captionFirst
+ where
+ nameFirst = try $ do
+ n <- name
+ c <- optionMaybe caption
+ return (Just n, c)
+ captionFirst = try $ do
+ c <- caption
+ n <- optionMaybe name
+ return (n, Just c)
+
+caption :: OrgParser Inlines
+caption = try $ annotation "CAPTION" *> inlinesTillNewline
+
+name :: OrgParser String
+name = try $ annotation "NAME" *> skipSpaces *> manyTill anyChar newline
+
+annotation :: String -> OrgParser String
+annotation ann = try $ metaLineStart *> stringAnyCase ann <* char ':'
+
-- Comments, Options and Metadata
specialLine :: OrgParser Blocks
specialLine = try $ metaLine <|> commentLine
@@ -277,7 +316,7 @@ declarationLine = try $ do
return mempty
metaValue :: OrgParser MetaValue
-metaValue = MetaInlines . B.toList . trimInlines <$> restOfLine
+metaValue = MetaInlines . B.toList <$> inlinesTillNewline
metaKey :: OrgParser String
metaKey = map toLower <$> many1 (noneOf ": \n\r")
@@ -288,7 +327,7 @@ metaKey = map toLower <$> many1 (noneOf ": \n\r")
header :: OrgParser Blocks
header = try $
B.header <$> headerStart
- <*> (trimInlines <$> restOfLine)
+ <*> inlinesTillNewline
headerStart :: OrgParser Int
headerStart = try $
@@ -424,13 +463,10 @@ setAligns aligns t = t{ orgTableAlignments = aligns }
-- Paragraphs or Plain text
paraOrPlain :: OrgParser Blocks
paraOrPlain = try $
- trimInlines . mconcat
- <$> many1 inline
- <**> option B.plain
- (try $ newline *> pure B.para)
+ parseInlines <**> option B.plain (try $ newline *> pure B.para)
-restOfLine :: OrgParser Inlines
-restOfLine = mconcat <$> manyTill inline newline
+inlinesTillNewline :: OrgParser Inlines
+inlinesTillNewline = trimInlines . mconcat <$> manyTill inline newline
--
@@ -523,6 +559,8 @@ inline =
] <* (guard =<< newlinesCountWithinLimits)
<?> "inline"
+parseInlines :: OrgParser Inlines
+parseInlines = trimInlines . mconcat <$> many1 inline
-- treat these as potentially non-text when parsing inline:
specialChars :: [Char]
@@ -580,6 +618,9 @@ selflinkOrImage = try $ do
then B.image src "" ""
else B.link src "" (B.str src)
+selfTarget :: OrgParser String
+selfTarget = try $ char '[' *> linkTarget <* char ']'
+
linkTarget :: OrgParser String
linkTarget = enclosed (char '[') (char ']') (noneOf "\n\r]")