packages feed

skylighting-format-blaze-html 0.1.1.1 → 0.1.1.2

raw patch · 3 files changed

+8/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

changelog.md view
@@ -1,9 +1,14 @@ # Changelog for skylighting-format-blaze-html +## 0.1.1.2++* Re-add `display: inline-block` to code line spans, but only+  for print media. See jgm/pandoc#9520.+ ## 0.1.1.1  * Remove `display: inline-block` from the code line spans.  This-  caused odd size changes in iOS.  Closes #7248.+  caused odd size changes in iOS.  Closes jgm/pandoc#7248.  ## 0.1.1 
skylighting-format-blaze-html.cabal view
@@ -1,5 +1,5 @@ name:                skylighting-format-blaze-html-version:             0.1.1.1+version:             0.1.1.2 synopsis:            HTML formatter for skylighting syntax highlighting library description:         This module allows tokens produced by skylighting-core                      to be rendered as HTML.
src/Skylighting/Format/HTML.hs view
@@ -205,7 +205,7 @@           , "}"           , "@media print {"           , "pre > code.sourceCode { white-space: pre-wrap; }"-          , "pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }"+          , "pre > code.sourceCode > span { display: inline-block; text-indent: -5em; padding-left: 5em; }"           , "}"           ]          linkspec = [ "@media screen {"