aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2021-06-08 12:35:55 +0200
committerAlbert Krewinkel <albert@zeitkraut.de>2021-06-08 12:38:20 +0200
commite66960fe4f3e49d33eefe56ff05ac4007a800cc5 (patch)
tree22dba878f69bb80ba68ca351f770ba9f8eeea54f /doc
parent39afd4297ff9d03b3c70eec0d99a43ed5c05ab34 (diff)
downloadpandoc-e66960fe4f3e49d33eefe56ff05ac4007a800cc5.tar.gz
using-the-pandoc-api.md: switch from String to Text
Fixed examples that would no longer compile with current library versions, as the API now uses Text instead of String in most places.
Diffstat (limited to 'doc')
-rw-r--r--doc/using-the-pandoc-api.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/using-the-pandoc-api.md b/doc/using-the-pandoc-api.md
index d6eb9e15f..d44e82e9b 100644
--- a/doc/using-the-pandoc-api.md
+++ b/doc/using-the-pandoc-api.md
@@ -139,7 +139,7 @@ report :: PandocMonad m => LogMessage -> m ()
-- | Fetch an image or other item from the local filesystem or the net.
-- Returns raw content and maybe mime type.
fetchItem :: PandocMonad m
- => String
+ => Text
-> m (B.ByteString, Maybe MimeType)
-- Set the resource path searched by 'fetchItem'.
@@ -213,8 +213,8 @@ of the Monoid typeclass and can easily be concatenated:
import Text.Pandoc.Builder
mydoc :: Pandoc
-mydoc = doc $ header 1 (text "Hello!")
- <> para (emph (text "hello world") <> text ".")
+mydoc = doc $ header 1 (text (T.pack "Hello!"))
+ <> para (emph (text (T.pack "hello world")) <> text (T.pack "."))
main :: IO ()
main = print mydoc
@@ -261,16 +261,16 @@ import qualified Data.Text as T
import Data.List (intersperse)
data Station = Station{
- address :: String
- , name :: String
- , cardsAccepted :: [String]
+ address :: T.Text
+ , name :: T.Text
+ , cardsAccepted :: [T.Text]
} deriving Show
instance FromJSON Station where
parseJSON (Object v) = Station <$>
v .: "street_address" <*>
v .: "station_name" <*>
- (words <$> (v .:? "cards_accepted" .!= ""))
+ (T.words <$> (v .:? "cards_accepted" .!= ""))
parseJSON _ = mzero
createLetter :: [Station] -> Pandoc
@@ -328,7 +328,7 @@ users to override the system defaults. If you want to disable
this behavior, use `setUserDataDir Nothing`.
To render a template, use `renderTemplate'`, which takes two
-arguments, a template (String) and a context (any instance
+arguments, a template (Text) and a context (any instance
of ToJSON). If you want to create a context from the metadata
part of a Pandoc document, use `metaToJSON'` from
[Text.Pandoc.Writers.Shared]. If you also want to incorporate
@@ -426,7 +426,7 @@ concatenated together. Here's an example that returns a
list of the URLs linked to in a document:
```haskell
-listURLs :: Pandoc -> [String]
+listURLs :: Pandoc -> [Text]
listURLs = query urls
where urls (Link _ _ (src, _)) = [src]
urls _ = []