diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-12-13 17:40:24 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-12-13 17:40:24 -0800 |
commit | 90b8024fac298fe26b47075fb1d87d81a7a30ab0 (patch) | |
tree | 905821510ab95a26a2b1678d3230313caa7ddef5 /src/Text/Pandoc | |
parent | 36c589a21e51c629b8bff7bc96e1b8c8213e34b4 (diff) | |
download | pandoc-90b8024fac298fe26b47075fb1d87d81a7a30ab0.tar.gz |
Use posix path separators in ICML link URIs.
Closes #2589.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Writers/ICML.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/ICML.hs b/src/Text/Pandoc/Writers/ICML.hs index b73fc78cf..7fe3de2f6 100644 --- a/src/Text/Pandoc/Writers/ICML.hs +++ b/src/Text/Pandoc/Writers/ICML.hs @@ -27,7 +27,7 @@ import Data.List (isPrefixOf, isInfixOf, stripPrefix) import Data.Text as Text (breakOnAll, pack) import Control.Monad.State import Network.URI (isURI) -import System.FilePath (pathSeparator) +import System.FilePath.Posix (pathSeparator) import qualified Data.Set as Set type Style = [String] |