summaryrefslogtreecommitdiff
path: root/Pancake/Rendering.hs
diff options
context:
space:
mode:
authordefanor <defanor@uberspace.net>2017-11-26 08:52:32 +0300
committerdefanor <defanor@uberspace.net>2017-11-26 08:52:32 +0300
commit53d7b8175ff897391fda84eb3dc71af31d364f7e (patch)
treec9c046631f79e33ee0a5cc1aee899193f372ece6 /Pancake/Rendering.hs
parent9285ad522bdaf72bbcefdca3807ece0194eae84b (diff)
Distinguish image denotations from those for links
Some kind of image support can be introduced in the future, and it's not quite correct to present images as links.
Diffstat (limited to 'Pancake/Rendering.hs')
-rw-r--r--Pancake/Rendering.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Pancake/Rendering.hs b/Pancake/Rendering.hs
index 5393b77..e5c5ae4 100644
--- a/Pancake/Rendering.hs
+++ b/Pancake/Rendering.hs
@@ -42,6 +42,7 @@ data Listing = Bulleted
-- | Denotations: information that can be ignored, but can also be
-- used to improve the UI.
data Denotation = Link URI
+ | Image URI
| Math String
| Heading Int
deriving (Show, Eq)
@@ -336,7 +337,7 @@ readInline (P.Link attr alt (url, title)) = do
(URI "" Nothing "" "" ('#':_)) -> Magenta
_ -> Cyan
st <- get
- pure $ (map $ Denote (Link uri) . Fg color) t ++
+ pure $ map (Denote (Link uri) . Fg color) t ++
[Fg Blue $ fromString
(concat ["[", showRef (referenceDigits $ rsConf st) cnt, "]"])]
Nothing -> pure [fromString title]
@@ -353,7 +354,7 @@ readInline (P.Image attr alt (url, title)) = do
(_, alt') -> alt'
cnt <- storeLink uri
st <- get
- pure $ (map $ Denote (Link uri) . Fg Cyan) t ++
+ pure $ map (Denote (Image uri) . Fg Cyan) t ++
[Fg Blue $ fromString
(concat ["[", showRef (referenceDigits $ rsConf st) cnt, "]"])]
readInline (P.Note bs) = do