diff options
Diffstat (limited to 'changelog')
-rw-r--r-- | changelog | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -201,6 +201,17 @@ pandoc (1.10) Previously header identifers were autogenerated by the writers. Now they are added in the readers (either automatically or explicitly). + * `Text.Pandoc.Builder`: + + + `Inlines` and `Blocks` are now synonyms for `Many Inline` and + `Many Block`. `Many` is a newtype wrapper around `Seq`, with + custom Monoid instances for `Many Inline` and `Many Block. This + allows `Many` to be made an instance of `Foldable` and `Traversable`. + + The old `Listable` class has been removed. + + The module now exports `isNull`, `toList`, `fromList`. + + The old `Read` and `Show` instances have been removed; derived + instances are now used. + * The readers now take a `ReaderOptions` rather than a `ParserState` as a parameter. Indeed, not all parsers use the `ParserState` type; some have a custom state. The motivation for this change was to separate |