summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/CSS.hs
Commit message (Collapse)AuthorAge
* new function to extract multiple properties at once in CSS.hsmb212015-12-13
| | | | and use it in Textile reader
* Parse CSS that doesn't contain the optional semicolonmb212015-12-02
|
* hlint fixes.John MacFarlane2015-11-22
|
* Revert "Use -XNoImplicitPrelude and 'import Prelude' explicitly."John MacFarlane2015-11-09
| | | | This reverts commit c423dbb5a34c2d1195020e0f0ca3aae883d0749b.
* Use -XNoImplicitPrelude and 'import Prelude' explicitly.John MacFarlane2015-11-08
| | | | | | | This is needed for ghci to work with pandoc, given that we now use a custom prelude. Closes #2503.
* Use custom Prelude to avoid compiler warnings.John MacFarlane2015-10-14
| | | | | | | | | | | | | - The (non-exported) prelude is in prelude/Prelude.hs. - It exports Monoid and Applicative, like base 4.8 prelude, but works with older base versions. - It exports (<>) for mappend. - It hides 'catch' on older base versions. This allows us to remove many imports of Data.Monoid and Control.Applicative, and remove Text.Pandoc.Compat.Monoid. It should allow us to use -Wall again for ghc 7.10.
* HTML Reader: Parse <ol> type, class, and inline list-style(-type) CSSOphir Lifshitz2015-07-24