90e436d496
PR #5884. + Use pandoc-types 1.20 and texmath 0.12. + Text is now used instead of String, with a few exceptions. + In the MediaBag module, some of the types using Strings were switched to use FilePath instead (not Text). + In the Parsing module, new parsers `manyChar`, `many1Char`, `manyTillChar`, `many1TillChar`, `many1Till`, `manyUntil`, `mantyUntilChar` have been added: these are like their unsuffixed counterparts but pack some or all of their output. + `glob` in Text.Pandoc.Class still takes String since it seems to be intended as an interface to Glob, which uses strings. It seems to be used only once in the package, in the EPUB writer, so that is not hard to change.
43 lines
1.1 KiB
Haskell
43 lines
1.1 KiB
Haskell
{-# LANGUAGE NoImplicitPrelude #-}
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
{- |
|
|
Module : Tests.Readers.Org.Shared
|
|
Copyright : © 2014-2019 Albert Krewinkel
|
|
License : GNU GPL, version 2 or above
|
|
|
|
Maintainer : Albert Krewinkel <albert@zeitkraut.de>
|
|
Stability : alpha
|
|
Portability : portable
|
|
|
|
Helper functions used by other org tests.
|
|
-}
|
|
module Tests.Readers.Org.Shared
|
|
( (=:)
|
|
, org
|
|
, spcSep
|
|
, tagSpan
|
|
) where
|
|
|
|
import Prelude
|
|
import Data.List (intersperse)
|
|
import Data.Text (Text)
|
|
import Tests.Helpers (ToString, purely, test)
|
|
import Test.Tasty (TestTree)
|
|
import Text.Pandoc (Pandoc, ReaderOptions (readerExtensions),
|
|
def, getDefaultExtensions, readOrg)
|
|
import Text.Pandoc.Builder (Inlines, smallcaps, space, spanWith, str)
|
|
|
|
org :: Text -> Pandoc
|
|
org = purely $ readOrg def{ readerExtensions = getDefaultExtensions "org" }
|
|
|
|
infix 4 =:
|
|
(=:) :: ToString c
|
|
=> String -> (Text, c) -> TestTree
|
|
(=:) = test org
|
|
|
|
spcSep :: [Inlines] -> Inlines
|
|
spcSep = mconcat . intersperse space
|
|
|
|
-- | Create a span for the given tag.
|
|
tagSpan :: Text -> Inlines
|
|
tagSpan t = spanWith ("", ["tag"], [("tag-name", t)]) . smallcaps $ str t
|