markdown2svg 0.0.1.5 → 0.0.1.6
raw patch · 2 files changed
+3/−3 lines, 2 files
Files
- markdown2svg.cabal +2/−2
- src/markdown2svg.hs +1/−1
markdown2svg.cabal view
@@ -2,7 +2,7 @@ cabal-version: >=1.8 name: markdown2svg-version: 0.0.1.5+version: 0.0.1.6 stability: Experimental author: Yoshikuni Jujo <PAF01143@nifty.ne.jp> maintainer: Yoshikuni Jujo <PAF01143@nifty.ne.jp>@@ -31,7 +31,7 @@ source-repository this type: git location: git://github.com/YoshikuniJujo/markdown2svg.git- tag: 0.0.1.5+ tag: 0.0.1.6 executable markdown2svg hs-source-dirs: src
src/markdown2svg.hs view
@@ -16,7 +16,7 @@ let size = getSizeR opts dir = getDir opts cnt <- readFile fp- case parseMrd cnt of+ case parse cnt of Just t -> forM_ (zip [1 ..] $ textToSVG True size t) $ \(i, s) -> writeFile (mkSVGFileName dir fp i) s _ -> return ()