summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2011-11-22 08:39:44 +0100
committerJasper Van der Jeugt <m@jaspervdj.be>2011-11-22 08:39:44 +0100
commit88519fef556deee41a30550420243fc3ca86606b (patch)
tree416aba819d4b63e428ac1c88381701abe11fd0b1 /src
parentd3140f397c2cdf3be193380d1f9bea003817a49e (diff)
downloadhakyll-88519fef556deee41a30550420243fc3ca86606b.tar.gz
Fix bibliography handling
Diffstat (limited to 'src')
-rw-r--r--src/Hakyll.hs2
-rw-r--r--src/Hakyll/Web/Pandoc.hs16
-rw-r--r--src/Hakyll/Web/Pandoc/Biblio.hs56
3 files changed, 50 insertions, 24 deletions
diff --git a/src/Hakyll.hs b/src/Hakyll.hs
index a0e48f5..3f258b7 100644
--- a/src/Hakyll.hs
+++ b/src/Hakyll.hs
@@ -25,6 +25,7 @@ module Hakyll
, module Hakyll.Web.Page.Metadata
, module Hakyll.Web.Page.Read
, module Hakyll.Web.Pandoc
+ , module Hakyll.Web.Pandoc.Biblio
, module Hakyll.Web.Pandoc.FileType
, module Hakyll.Web.Urls
, module Hakyll.Web.Urls.Relativize
@@ -57,6 +58,7 @@ import Hakyll.Web.Page.List
import Hakyll.Web.Page.Metadata
import Hakyll.Web.Page.Read
import Hakyll.Web.Pandoc
+import Hakyll.Web.Pandoc.Biblio
import Hakyll.Web.Pandoc.FileType
import Hakyll.Web.Urls
import Hakyll.Web.Urls.Relativize
diff --git a/src/Hakyll/Web/Pandoc.hs b/src/Hakyll/Web/Pandoc.hs
index a1bd09c..be6b544 100644
--- a/src/Hakyll/Web/Pandoc.hs
+++ b/src/Hakyll/Web/Pandoc.hs
@@ -10,6 +10,7 @@ module Hakyll.Web.Pandoc
-- * Functions working on pages/compilers
, pageReadPandoc
, pageReadPandocWith
+ , pageReadPandocWithA
, pageRenderPandoc
, pageRenderPandocWith
@@ -20,7 +21,7 @@ module Hakyll.Web.Pandoc
import Prelude hiding (id)
import Control.Applicative ((<$>))
-import Control.Arrow ((>>^), (&&&))
+import Control.Arrow ((>>>), (>>^), (&&&), (***))
import Control.Category (id)
import Data.Maybe (fromMaybe)
@@ -28,6 +29,7 @@ import Text.Pandoc
import Hakyll.Core.Compiler
import Hakyll.Core.Identifier
+import Hakyll.Core.Util.Arrow
import Hakyll.Web.Pandoc.FileType
import Hakyll.Web.Page.Internal
@@ -78,10 +80,16 @@ pageReadPandoc = pageReadPandocWith defaultHakyllParserState
-- | Read the resource using pandoc
--
pageReadPandocWith :: ParserState -> Compiler (Page String) (Page Pandoc)
-pageReadPandocWith state =
- id &&& getIdentifier &&& getFileType >>^ pageReadPandocWith'
+pageReadPandocWith state = constA state &&& id >>> pageReadPandocWithA
+
+-- | Read the resource using pandoc. This is a (rarely needed) variant, which
+-- comes in very useful when the parser state is the result of some arrow.
+--
+pageReadPandocWithA :: Compiler (ParserState, Page String) (Page Pandoc)
+pageReadPandocWithA =
+ id *** id &&& getIdentifier &&& getFileType >>^ pageReadPandocWithA'
where
- pageReadPandocWith' (p, (i, t)) = readPandocWith state t (Just i) <$> p
+ pageReadPandocWithA' (s, (p, (i, t))) = readPandocWith s t (Just i) <$> p
-- | Render the resource using pandoc
--
diff --git a/src/Hakyll/Web/Pandoc/Biblio.hs b/src/Hakyll/Web/Pandoc/Biblio.hs
index 6cc9f83..681d40a 100644
--- a/src/Hakyll/Web/Pandoc/Biblio.hs
+++ b/src/Hakyll/Web/Pandoc/Biblio.hs
@@ -1,11 +1,19 @@
-- | Wraps pandocs bibiliography handling
+--
+-- In order to add a bibliography, you will need a bibliography file (e.g.
+-- @.bib@) and a CSL file (@.csl@). Both need to be compiled with their
+-- respective compilers ('biblioCompiler' and 'cslCompiler'). Then, you can
+-- refer to these files when you use 'pageReadPandocBiblio'. This function also
+-- takes a parser state for completeness -- you can use
+-- 'defaultHakyllParserState' if you're unsure.
+--
{-# LANGUAGE Arrows, DeriveDataTypeable, GeneralizedNewtypeDeriving #-}
module Hakyll.Web.Pandoc.Biblio
( CSL
, cslCompiler
- , References (..)
- , referencesCompiler
- , processBiblioCompiler
+ , Biblio (..)
+ , biblioCompiler
+ , pageReadPandocBiblio
) where
import Control.Applicative ((<$>))
@@ -13,7 +21,7 @@ import Control.Arrow (arr, returnA)
import Data.Typeable (Typeable)
import Data.Binary (Binary (..))
-import Text.Pandoc (Pandoc)
+import Text.Pandoc (Pandoc, ParserState (..))
import Text.Pandoc.Biblio (processBiblio)
import qualified Text.CSL as CSL
@@ -22,6 +30,7 @@ import Hakyll.Core.Identifier
import Hakyll.Core.Resource
import Hakyll.Core.Writable
import Hakyll.Web.Page
+import Hakyll.Web.Pandoc
newtype CSL = CSL FilePath
deriving (Binary, Show, Typeable, Writable)
@@ -29,29 +38,36 @@ newtype CSL = CSL FilePath
cslCompiler :: Compiler Resource CSL
cslCompiler = arr (CSL . unResource)
-newtype References = References [CSL.Reference]
+newtype Biblio = Biblio [CSL.Reference]
deriving (Show, Typeable)
-instance Binary References where
+instance Binary Biblio where
-- Ugly.
- get = References . read <$> get
- put (References rs) = put $ show rs
+ get = Biblio . read <$> get
+ put (Biblio rs) = put $ show rs
-instance Writable References where
+instance Writable Biblio where
write _ _ = return ()
-referencesCompiler :: Compiler Resource References
-referencesCompiler = unsafeCompiler $
- fmap References . CSL.readBiblioFile . unResource
+biblioCompiler :: Compiler Resource Biblio
+biblioCompiler = unsafeCompiler $
+ fmap Biblio . CSL.readBiblioFile . unResource
-processBiblioCompiler :: Identifier CSL
- -> Identifier References
- -> Compiler (Page Pandoc) (Page Pandoc)
-processBiblioCompiler csl refs = proc page -> do
- let body = pageBody page
+pageReadPandocBiblio :: ParserState
+ -> Identifier CSL
+ -> Identifier Biblio
+ -> Compiler (Page String) (Page Pandoc)
+pageReadPandocBiblio state csl refs = proc page -> do
CSL csl' <- require_ csl -< ()
- References refs' <- require_ refs -< ()
- body' <- unsafeCompiler (tuc processBiblio) -< (csl', refs', body)
- returnA -< page {pageBody = body'}
+ Biblio refs' <- require_ refs -< ()
+ -- We need to know the citation keys, add then *before* actually parsing the
+ -- actual page. If we don't do this, pandoc won't even consider them
+ -- citations!
+ let cits = map CSL.refId refs'
+ state' = state {stateCitations = stateCitations state ++ cits}
+ pandocPage <- pageReadPandocWithA -< (state', page)
+ let pandoc = pageBody pandocPage
+ pandoc' <- unsafeCompiler (tuc processBiblio) -< (csl', refs', pandoc)
+ returnA -< pandocPage {pageBody = pandoc'}
where
tuc f (x, y, z) = f x y z