aboutsummaryrefslogtreecommitdiff
path: root/stack.yaml
AgeCommit message (Collapse)AuthorFilesLines
2018-04-05Added test-framework to stack.yaml deps.John MacFarlane1-0/+1
2018-03-24Don't depend on latest haddock-library in stack.yaml.John MacFarlane1-1/+1
For now. Because of a bug in the library, it must be rebuilt every time we do 'stack install. See #4482.
2018-03-20Update stack.yaml to work with stackage nightly.John MacFarlane1-0/+3
We now compile on nightly.
2018-03-19Use pandoc-citeproc 0.14.3.John MacFarlane1-1/+1
2018-03-18Bumped some versions in stack.yaml.John MacFarlane1-2/+2
2018-03-18Removed old-locale flag and Text.Pandoc.Compat.Time.John MacFarlane1-1/+0
This is no longer necessary since we no longer support ghc 7.8.
2018-03-18Use NoImplicitPrelude and explicitly import Prelude.John MacFarlane1-5/+2
This seems to be necessary if we are to use our custom Prelude with ghci. Closes #4464.
2018-03-17Use pandoc-citeproc 0.14.2.John MacFarlane1-1/+1
2018-03-17stack.yaml - don't force latest haddock-library.John MacFarlane1-1/+0
2018-03-16Require haddock-libary 1.5 (with tables).John MacFarlane1-0/+1
2018-03-16Use latest pandoc-types.John MacFarlane1-1/+1
2018-03-13Require pandoc-types 1.17.4.John MacFarlane1-0/+1
And a few tweaks related to the Semigroups/Monoid change. Closes #4448.
2018-03-07stack.yaml: Add skylighting-core to extra-depsAlexander Krotov1-0/+1
2018-03-06Use latest skylighting.John MacFarlane1-1/+1
2018-03-02Use latest pandoc-citeproc.John MacFarlane1-1/+1
2018-02-28Update tagsoup to 0.14.6Alexander Krotov1-1/+1
2018-02-27Update tagsoup to 0.14.5Alexander Krotov1-1/+1
2018-02-27Update tagsoup to 0.14.4Alexander Krotov1-1/+1
Fixes #4282
2018-02-01Use latest pandoc-citeproc.John MacFarlane1-1/+1
2018-01-21Require tagsoup 0.14.3 - closes #4282.John MacFarlane1-0/+1
This fixes an HTML tokenization bug whereby comments were sometimes consumed with open tags.
2018-01-21Use latest pandoc-citeproc.John MacFarlane1-1/+1
2018-01-19Use latest texmath.John MacFarlane1-0/+1
2018-01-18More stack.yaml fixes for skylighting.John MacFarlane1-0/+1
2018-01-18Use latest pandoc-citeproc and skylighting.John MacFarlane1-3/+3
2018-01-15Reduce compiler noise (exact paths for compiled modules).John MacFarlane1-0/+2
2018-01-08Allow tasty 1.0.John MacFarlane1-1/+2
2018-01-07Use latest skylighting and omit the 'missingincludes' check.John MacFarlane1-1/+2
If you use a custom syntax definition that refers to a syntax you haven't loaded, pandoc will now complain when it is highlighting the text, rather than at the start. This saves a huge performance hit from the `missingIncludes` check. Closes #4226.
2018-01-04Bump hslua version to 0.9.5Albert Krewinkel1-0/+1
This version fixes a bug that made it difficult to handle failures while getting lists or a Map from Lua. A bug in pandoc, which made it necessary to always pass a tag when using MetaList or MetaBlock, is fixed as a result. Using the pandoc module's constructor functions for these values is now optional (if still recommended).
2018-01-03Use latest pandoc-citeproc.John MacFarlane1-1/+1
2018-01-02Use latest pandoc-citeproc.John MacFarlane1-1/+1
2018-01-02Use latest pandoc-citeproc.John MacFarlane1-1/+1
2017-12-28Bump pandoc-citeproc to 0.12.2.2.John MacFarlane1-1/+1
2017-12-28Use latest pandoc-citeproc.John MacFarlane1-1/+2
2017-12-27Removed stack.pkg.yaml.John MacFarlane1-1/+8
We only really need stack.yaml; we can put flag settings for pandoc-citeproc there. Also use ghc-8.0.2 in dockerized linux build. This is the only version available for alpine so far.
2017-12-26Use lts-10.1 resolver.John MacFarlane1-1/+1
2017-12-19Stack builds with lts-10.0.John MacFarlane1-13/+2
2017-12-10Changes for skylighting-0.5.John MacFarlane1-2/+1
This fixes a bug in 2.0.4, whereby pandoc could not read the theme files generated with `--print-highlight-style`. It also fixes some CSS issues involving line numbers. Highlighted code blocks are now enclosed in a div with class sourceCode. Highlighting CSS no longer sets a generic color for pre and code; we only set these for class `sourceCode`. This will close #4133 and #4128.
2017-12-04Bump lower bound of hsluaAlbert Krewinkel1-1/+1
The release hslua 0.9.3 contains a new function which makes using Haskell functions as package loaders much easier.
2017-11-30Use latest tagsoup.John MacFarlane1-1/+2
This fixes a bug in parsing tags with `&` following. Closes #4094. Closes #4088.
2017-11-27Use skylighting 0.4.4.1.John MacFarlane1-1/+1
Closes #4103 (wrong color of unmarked code text when numerLines is used).
2017-11-21Use skylighting 0.4.4.John MacFarlane1-1/+1
2017-11-18Lua filters: preload text module (#4077)Albert Krewinkel1-0/+1
The `text` module is preloaded in lua. The module contains some UTF-8 aware string functions, implemented in Haskell. The module is loaded on request only, e.g.: text = require 'text' function Str (s) s.text = text.upper(s.text) return s end
2017-11-11Use pandoc-types 1.17.3John MacFarlane1-1/+1
2017-11-04Use skylighting 0.4.3.2.John MacFarlane1-1/+1
2017-11-03Use texmath 0.10.John MacFarlane1-0/+1
2017-11-03Use latest skylighting.John MacFarlane1-1/+1
2017-11-02Use latest skylighting; ensure no duplicate ids on code lines.John MacFarlane1-1/+1
The line identifiers are built using the code block's identifier as a prefix. If the code block has null identifier, we use "cb1", "cb2", etc. Closes #4031.
2017-10-26Use skylighting 0.4.2.John MacFarlane1-1/+1
This prevents the problem with extra space around highlighted code blocks (closes #3996). Note that we no longer put an enclosing div around highlighted code blocks. The pre is the outer element, just as for unhighlighted blocks.
2017-10-22Back to using alpine-based Dockerfile for linux build.John MacFarlane1-1/+1
2017-10-20Use doctemplates 0.2.1: allows `$--` line comments in templates.John MacFarlane1-2/+2
Closes #3806.