2013-03-19 20:35:14 -07:00
|
|
|
{-
|
2015-04-26 10:18:29 -07:00
|
|
|
Copyright (C) 2013-2015 John MacFarlane <jgm@berkeley.edu>
|
2013-03-19 20:35:14 -07:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
-}
|
|
|
|
|
|
|
|
{- |
|
|
|
|
Module : Text.Pandoc.Writers.OPML
|
2015-04-26 10:18:29 -07:00
|
|
|
Copyright : Copyright (C) 2013-2015 John MacFarlane
|
2013-03-19 20:35:14 -07:00
|
|
|
License : GNU GPL, version 2 or above
|
|
|
|
|
|
|
|
Maintainer : John MacFarlane <jgm@berkeley.edu>
|
|
|
|
Stability : alpha
|
|
|
|
Portability : portable
|
|
|
|
|
|
|
|
Conversion of 'Pandoc' documents to OPML XML.
|
|
|
|
-}
|
|
|
|
module Text.Pandoc.Writers.OPML ( writeOPML) where
|
|
|
|
import Text.Pandoc.Definition
|
|
|
|
import Text.Pandoc.XML
|
2013-07-01 20:47:26 -07:00
|
|
|
import Text.Pandoc.Writers.Shared
|
2013-03-19 20:35:14 -07:00
|
|
|
import Text.Pandoc.Shared
|
|
|
|
import Text.Pandoc.Options
|
2013-05-10 22:53:35 -07:00
|
|
|
import Text.Pandoc.Templates (renderTemplate')
|
2013-03-19 20:35:14 -07:00
|
|
|
import Text.Pandoc.Writers.HTML (writeHtmlString)
|
|
|
|
import Text.Pandoc.Writers.Markdown (writeMarkdown)
|
|
|
|
import Text.Pandoc.Pretty
|
2013-03-20 10:17:36 -07:00
|
|
|
import Data.Time
|
2014-12-19 16:13:38 -08:00
|
|
|
import Text.Pandoc.Compat.Locale (defaultTimeLocale)
|
2013-05-10 22:53:35 -07:00
|
|
|
import qualified Text.Pandoc.Builder as B
|
2013-03-19 20:35:14 -07:00
|
|
|
|
|
|
|
-- | Convert Pandoc document to string in OPML format.
|
|
|
|
writeOPML :: WriterOptions -> Pandoc -> String
|
2013-05-10 22:53:35 -07:00
|
|
|
writeOPML opts (Pandoc meta blocks) =
|
|
|
|
let elements = hierarchicalize blocks
|
2013-03-19 20:35:14 -07:00
|
|
|
colwidth = if writerWrapText opts
|
|
|
|
then Just $ writerColumns opts
|
|
|
|
else Nothing
|
2013-05-10 22:53:35 -07:00
|
|
|
meta' = B.setMeta "date" (B.str $ convertDate $ docDate meta) meta
|
2013-07-01 20:47:26 -07:00
|
|
|
Just metadata = metaToJSON opts
|
2013-05-10 22:53:35 -07:00
|
|
|
(Just . writeMarkdown def . Pandoc nullMeta)
|
|
|
|
(Just . trimr . writeMarkdown def . Pandoc nullMeta .
|
|
|
|
(\ils -> [Plain ils]))
|
|
|
|
meta'
|
2013-03-20 10:17:36 -07:00
|
|
|
main = render colwidth $ vcat (map (elementToOPML opts) elements)
|
2013-06-29 22:14:01 -07:00
|
|
|
context = defField "body" main metadata
|
2013-03-19 20:35:14 -07:00
|
|
|
in if writerStandalone opts
|
2013-05-10 22:53:35 -07:00
|
|
|
then renderTemplate' (writerTemplate opts) context
|
2013-03-19 20:35:14 -07:00
|
|
|
else main
|
|
|
|
|
|
|
|
writeHtmlInlines :: [Inline] -> String
|
|
|
|
writeHtmlInlines ils = trim $ writeHtmlString def
|
2013-05-10 22:53:35 -07:00
|
|
|
$ Pandoc nullMeta [Plain ils]
|
2013-03-19 20:35:14 -07:00
|
|
|
|
2013-03-20 10:17:36 -07:00
|
|
|
-- date format: RFC 822: Thu, 14 Jul 2005 23:41:05 GMT
|
|
|
|
showDateTimeRFC822 :: UTCTime -> String
|
|
|
|
showDateTimeRFC822 = formatTime defaultTimeLocale "%a, %d %b %Y %X %Z"
|
|
|
|
|
|
|
|
convertDate :: [Inline] -> String
|
|
|
|
convertDate ils = maybe "" showDateTimeRFC822
|
|
|
|
$ parseTime defaultTimeLocale "%F" =<< (normalizeDate $ stringify ils)
|
|
|
|
|
2013-03-19 20:35:14 -07:00
|
|
|
-- | Convert an Element to OPML.
|
|
|
|
elementToOPML :: WriterOptions -> Element -> Doc
|
|
|
|
elementToOPML _ (Blk _) = empty
|
|
|
|
elementToOPML opts (Sec _ _num _ title elements) =
|
|
|
|
let isBlk (Blk _) = True
|
|
|
|
isBlk _ = False
|
|
|
|
fromBlk (Blk x) = x
|
|
|
|
fromBlk _ = error "fromBlk called on non-block"
|
|
|
|
(blocks, rest) = span isBlk elements
|
|
|
|
attrs = [("text", writeHtmlInlines title)] ++
|
2013-05-10 22:53:35 -07:00
|
|
|
[("_note", writeMarkdown def (Pandoc nullMeta
|
2013-03-19 20:35:14 -07:00
|
|
|
(map fromBlk blocks)))
|
|
|
|
| not (null blocks)]
|
|
|
|
in inTags True "outline" attrs $
|
|
|
|
vcat (map (elementToOPML opts) rest)
|