diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2009-01-24 19:59:15 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2009-01-24 19:59:15 +0000 |
commit | 9da6912f7ac0f434d4efcf476b70a0feee1c6200 (patch) | |
tree | c5a50743b7d31203c8d7e25076ac2a900d2f864c /plugins | |
parent | cd3d22bd19f04902fec01716dfc30bd98ed85a4e (diff) | |
download | pandoc-9da6912f7ac0f434d4efcf476b70a0feee1c6200.tar.gz |
Changed processIn -> processWith in sample plugin.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1526 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/ListLinksPlugin.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ListLinksPlugin.hs b/plugins/ListLinksPlugin.hs index 88c1553b1..1342aecf0 100644 --- a/plugins/ListLinksPlugin.hs +++ b/plugins/ListLinksPlugin.hs @@ -6,7 +6,7 @@ import Text.Pandoc transform :: Pandoc -> IO Pandoc transform p = do - let urls = queryIn findURLs p + let urls = queryWith findURLs p putStrLn $ unlines urls return $ Pandoc (Meta [] [] []) [] |