Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-01-08 | Update copyright notices for 2021 (#7012) | Albert Krewinkel | 1 | -2/+2 | |
2020-04-15 | Adapt to the newest Table type, fix some previous adaptation issues | despresc | 1 | -0/+24 | |
- Writers.Native is now adapted to the new Table type. - Inline captions should now be conditionally wrapped in a Plain, not a Para block. - The toLegacyTable function now lives in Writers.Shared. | |||||
2020-04-15 | Implement the new Table type | despresc | 1 | -0/+24 | |
2020-03-15 | Use implicit Prelude (#6187) | Albert Krewinkel | 1 | -2/+0 | |
* Use implicit Prelude The previous behavior was introduced as a fix for #4464. It seems that this change alone did not fix the issue, and `stack ghci` and `cabal repl` only work with GHC 8.4.1 or newer, as no custom Prelude is loaded for these versions. Given this, it seems cleaner to revert to the implicit Prelude. * PandocMonad: remove outdated check for base version Only base versions 4.9 and later are supported, the check for `MIN_VERSION_base(4,8,0)` is therefore unnecessary. * Always use custom prelude Previously, the custom prelude was used only with older GHC versions, as a workaround for problems with ghci. The ghci problems are resolved by replacing package `base` with `base-noprelude`, allowing for consistent use of the custom prelude across all GHC versions. | |||||
2020-03-13 | Update copyright year (#6186) | Albert Krewinkel | 1 | -2/+2 | |
* Update copyright year * Copyright: add notes for Lua and Jira modules | |||||
2019-08-16 | Lua: add module for AST element sequence traversal | Albert Krewinkel | 1 | -0/+112 | |
Lua filters must be able to traverse sequences of AST elements and to replace elements by splicing sequences back in their place. Special `Walkable` instances can be used for this; those are provided in a new module `Text.Pandoc.Lua.Walk`. |