We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86a2688 commit f434e40Copy full SHA for f434e40
src/Diagrams/Backend/SVG.hs
@@ -97,7 +97,7 @@ import Data.Monoid.Split (Split (..))
97
import Text.Blaze.Svg.Renderer.Utf8 (renderSvg)
98
import Text.Blaze.Svg11 ((!))
99
import qualified Text.Blaze.Svg11 as S
100
-import qualified Text.Blaze.Svg.Renderer.Pretty as PrettySvg
+import qualified Text.Blaze.Svg.Renderer.String as StringSvg
101
102
-- from this package
103
import qualified Graphics.Rendering.SVG as R
@@ -221,7 +221,7 @@ instance Show (Options SVG R2) where
221
, "svgDefinitions = "
222
, case svgDefinitions opts of
223
Nothing -> "Nothing"
224
- Just svg -> "Just " ++ PrettySvg.renderSvg svg
+ Just svg -> "Just " ++ StringSvg.renderSvg svg
225
, " }"
226
]
227
0 commit comments