Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-03-02 | Split out T.P.Writers.LaTeX.Lang. | John MacFarlane | 3 | -180/+204 | |
2021-03-02 | Split up T.P.Writers.Markdown... | John MacFarlane | 4 | -591/+690 | |
with T.P.Writers.Markdown.Types and T.P.Writers.Markdown.Inline. The module was difficult to compile on low-memory system.s | |||||
2021-03-02 | Add doc/libraries.md. | John MacFarlane | 1 | -0/+59 | |
A description of libraries that support pandoc. | |||||
2021-03-02 | stack.yaml - use citeproc 0.3.0.8 | John MacFarlane | 1 | -1/+1 | |
2021-03-02 | Update changelog. | John MacFarlane | 1 | -98/+182 | |
2021-03-02 | MacOS release build: remove -split-sections. | John MacFarlane | 1 | -2/+2 | |
It doesn't seem to affect executable size at all. | |||||
2021-03-02 | trypandoc: remove unneeded imports. | John MacFarlane | 1 | -4/+0 | |
2021-03-02 | cabal.project: don't explicitly set -trypandoc. | John MacFarlane | 1 | -1/+1 | |
If we do, this can't be overridden on the command line. | |||||
2021-03-02 | Avoid split-sections for Windows rc. | John MacFarlane | 1 | -2/+1 | |
We get an error "too many sections." Maybe a bug in stack? https://stackoverflow.com/questions/64287505/ld-too-many-sections-90295 | |||||
2021-03-01 | Use -split-sections in creating release binary. | John MacFarlane | 3 | -4/+4 | |
This is supposed to reduce executable size. | |||||
2021-03-01 | Make T.P.Readers.LaTeX.Types an unexported module. | John MacFarlane | 2 | -2/+2 | |
[API change] This is really an implementation detail that shouldn't be exposed in the public API. | |||||
2021-03-01 | Factor out T.P.Readers.LaTeX.Macro. | John MacFarlane | 3 | -139/+156 | |
2021-03-01 | Jira writer: use Span identifiers as anchors | Albert Krewinkel | 2 | -2/+11 | |
Closes: tarleb/jira-wiki-markup#3. | |||||
2021-02-28 | Removed unnecessary pragmas. | John MacFarlane | 1 | -2/+0 | |
2021-02-28 | Change T.P.Readers.LaTeX.SIunitx to export a command map... | John MacFarlane | 2 | -16/+16 | |
instead of individual commands. | |||||
2021-02-28 | Remove superfluous imports. | John MacFarlane | 1 | -2/+0 | |
2021-02-28 | T.P.Readers.LaTeX: Don't export tokenize, untokenize. | John MacFarlane | 3 | -18/+10 | |
[API change] These were only exported for testing, which seems the wrong thing to do. They don't belong in the public API and are not really usable as they are, without access to the Tok type which is not exported. Removed the tokenize/untokenize roundtrip test. We put a quickcheck property in the comments which may be used when this code is touched (if it is). | |||||
2021-02-28 | LaTeX writer: use function instead of map for accent lookup. | John MacFarlane | 1 | -27/+25 | |
2021-02-28 | Factor out T.P.Readers.LaTeX.Math. | John MacFarlane | 3 | -193/+230 | |
2021-02-28 | Fix CI for older cabal versions. | John MacFarlane | 1 | -7/+16 | |
We add fields to matrix.versions to handle the cabal command prefix (v2-, new-, nothing) and whether `--test-option` is supported. | |||||
2021-02-28 | CI: don't use --test-option with older cabal versions (< 3). | John MacFarlane | 1 | -1/+2 | |
2021-02-28 | Fix bug in last commit. | John MacFarlane | 1 | -1/+1 | |
2021-02-28 | Markdown reader efficiency improvements. | John MacFarlane | 1 | -182/+208 | |
Benchmarks show that these make the reader 13-17% faster, depending on extensions. | |||||
2021-02-28 | LaTeX reader: another small efficiency improvement. | John MacFarlane | 1 | -6/+12 | |
2021-02-28 | LaTeX reader efficiency improvements. | John MacFarlane | 1 | -31/+42 | |
In conjunction with other changes this makes the reader almost twice as fast on our benchmark as it was on Feb. 10. | |||||
2021-02-28 | Move setDefaultLanguage to T.P.Readers.LaTeX.Lang. | John MacFarlane | 2 | -16/+22 | |
2021-02-28 | LaTeX reader: remove two unnecessary parsers in inline. | John MacFarlane | 1 | -2/+0 | |
These are handled anyway by regularSymbol. | |||||
2021-02-28 | trypandoc: add 2 second timeout. | John MacFarlane | 2 | -2/+3 | |
2021-02-28 | Factor out T.P.Readers.LaTeX.Citation. | John MacFarlane | 4 | -186/+232 | |
2021-02-27 | Factor out T.P.Readers.LaTeX.Table. | John MacFarlane | 4 | -363/+412 | |
2021-02-27 | Split off T.P.Readers.LaTeX.Accent. | John MacFarlane | 3 | -60/+87 | |
To help reduce memory demands compiling the main LaTeX reader. | |||||
2021-02-27 | Add xml-conduit to stack.yaml extra-deps. | John MacFarlane | 1 | -0/+1 | |
2021-02-27 | Use skylighting 0.10.4. | John MacFarlane | 2 | -4/+4 | |
This version of skylighting uses xml-conduit rather than hxt. This speeds up parsing of XML syntax definitions fourfold, and removes four packages from pandoc's dependency graph: hxt-charproperties hxt-unicode hxt-regex-xmlschema hxt | |||||
2021-02-27 | Lua: use strict evaluation when retrieving AST value from the stack | Albert Krewinkel | 1 | -79/+77 | |
Fixes: #6674 | |||||
2021-02-26 | Add tools/parseTimings.pl. | John MacFarlane | 1 | -0/+33 | |
A script to help pin down which modules take the most time and memory to compile. | |||||
2021-02-26 | CI: hide successes in linux test output. | John MacFarlane | 1 | -1/+1 | |
2021-02-26 | Update tests for changes to https URLs. | John MacFarlane | 6 | -6/+6 | |
2021-02-26 | Fix/update URLs and use HTTP**S** where possible (#7122) | Salim B | 17 | -48/+47 | |
2021-02-26 | Wrap url colours in braces in the default LaTeX template (#7121) | Loïc Grobol | 1 | -4/+4 | |
2021-02-22 | CI: Add 'benchmark' to benchmark cache key. | John MacFarlane | 1 | -2/+2 | |
For benchmark we build with optimizations, so the regular cache is useless. | |||||
2021-02-22 | Use latest skylighting. | John MacFarlane | 2 | -2/+4 | |
2021-02-22 | Remove weigh-pandoc. | John MacFarlane | 2 | -56/+0 | |
It's not really useful any more, now that our regular benchmarks include data on allocation. | |||||
2021-02-22 | benchmark CI improvements. | John MacFarlane | 1 | -3/+3 | |
- don't build tests, just benchmarks. - get allocation info. | |||||
2021-02-22 | Rename benchmark in CI. | John MacFarlane | 1 | -1/+1 | |
2021-02-22 | Add linux benchmark to CI. | John MacFarlane | 1 | -0/+56 | |
2021-02-22 | T.P.CSV: fix parsing of unquoted values. | John MacFarlane | 2 | -2/+16 | |
Previously we didn't allow unescaped quotes in unquoted values, but they are allowed. Closes #7112. | |||||
2021-02-22 | tests: print accurate location if a test fails | Albert Krewinkel | 1 | -1/+1 | |
Ensures that tasty-hunit reports the location of the failing test instead of the location of the helper `test` function. | |||||
2021-02-22 | Fall back to latin1 if UTF-8 decoding fails... | John MacFarlane | 1 | -1/+7 | |
...when handling URL argument served with no charset in the mime type. The assumption is that most pages that don't specify a charset in the mime type are either UTF-8 or latin1. I think that's a good assumption, though I'm not sure. | |||||
2021-02-22 | When downloading content from URL arguments, be sensitive to... | John MacFarlane | 1 | -1/+9 | |
the character encoding. We can properly handle UTF-8 and latin1 (ISO-8859-1); for others we raise an error. See #5600. | |||||
2021-02-22 | T.P.Error: Add PandocUnsupportedCharsetError constructor... | John MacFarlane | 2 | -0/+5 | |
...for PandocError. [API change] |