diff options
author | John MacFarlane <jgm@berkeley.edu> | 2021-10-25 08:48:18 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-10-27 12:50:51 -0700 |
commit | d226a35c0ac6485c75f083ce3b25ada1d623f45f (patch) | |
tree | 319e9b0810b1d9157de8355b75aba92ffc5c5231 /src/Text/Pandoc/Slides.hs | |
parent | b990ca3c4cadf0da0d17a71809cf0a87c67eb175 (diff) | |
download | pandoc-d226a35c0ac6485c75f083ce3b25ada1d623f45f.tar.gz |
Switch back from HsYAML to yaml.
Reasons:
- Performance: HsYAML is around 20 times slower in parsing
large YAML bibliographies (#6084).
- An issue was submitted to HsYAML, but it hasn't gotten
any attention. HsYAML seems borderline unmaintained; it hasn't
had a commit in over a year.
- Unfortunately this goes back on our attempts to free ourselves
from C dependencies (#4535). But I don't see a better alternative
until a better pure Haskell parser is available.
Closes #6084.
Notes:
- We've removed the FromYAML instances for all types that had
them, since this is a HsYAML-specific typeclass [API change].
(The yaml package just uses From/ToJSON.)
- Unlike HsYAML (in the configuration we were using), yaml
parses 'Y', 'N', 'Yes', 'No', 'On', 'Off' as boolean values.
Users may need to quote these when they are meant to be
interpreted as strings. Similarly, 'null' is parsed as
a YAML null value (and will be treated as an empty string
by pandoc rather than the string 'null'). Quoting it will
force it to be interpreted as a string.
- Some tests had to be adjusted accordingly.
- Pandoc now behaves better when the YAML metadata contains
escaping errors: instead of just falling back on treating
the section as a table, it raises a YAML parsing error.
Diffstat (limited to 'src/Text/Pandoc/Slides.hs')
0 files changed, 0 insertions, 0 deletions