summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Process.hs
Commit message (Collapse)AuthorAge
* Update dates in copyright noticesAlbert Krewinkel2017-05-13
| | | | | This follows the suggestions given by the FSF for GPL licensed software. <https://www.gnu.org/prep/maintain/html_node/Copyright-Notices.html>
* Stylish-haskell automatic formatting changes.John MacFarlane2017-03-04
|
* Process.pipeProcess: stream stderr rather than capturing.John MacFarlane2017-01-25
| | | | | | | | | | | Signature of pipeProcess has changed: the return value is now IO (ExitCode, ByteString) -- with only stdout. Stderr is just inherited from the parent. This means that stderr from filters will now be streamed as the filters are run. Closes #2729.
* Updated copyright dates to include 2016.John MacFarlane2016-03-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.
* Updated copyright notices to -2015. Closes #2111.John MacFarlane2015-04-26
|
* Process: Fix minor typo in pipeProcess' docsAlbert Krewinkel2014-05-11
| | | | Replace fullstop with comma, adjust capitalisation.
* Update copyright notices for 2014, add missing noticesAlbert Krewinkel2014-05-09
|
* Added Text.Pandoc.Process (pipeProcess).John MacFarlane2013-08-08
A souped up version of readProcessWithErrorCode that uses lazy bytestrings and allows setting environment.