diff options
-rw-r--r-- | AUTHORS.md | 1 | ||||
-rw-r--r-- | changelog | 13 |
2 files changed, 11 insertions, 3 deletions
diff --git a/AUTHORS.md b/AUTHORS.md index d56c2872e..8c159041c 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -179,6 +179,7 @@ - bumper314 - csforste - d-dorazio +- hftf - iandol - infinity0x - lwolfsonkin @@ -287,6 +287,12 @@ pandoc (2.0) * Make `east_asian_line_breaks` affect all readers/writers (#3703). + * Underlined elements are now treated consistently by readers + (#2270, hftf); they are always put in a Span with class `underline`. + This allows the user to treat them differently from other emphasis, + using a filter. Docx, Org, Textile, Txt2Tags, and HTML readers + have been changed. + * Improved behavior of `auto_identifiers` when there are explicit ids (#1745). Previously only autogenerated ids were added to the list of header identifiers in state, so explicit ids weren't taken @@ -833,7 +839,7 @@ pandoc (2.0) + Remove `normalizeSpaces` (#1530). + Remove `warn`. (Use `report` from `Text.Pandoc.Class` instead.) + Export a new function `crFilter`. - + Added `eastAsianLineBreakFilter` (previously in Markdown reader). + + Add `eastAsianLineBreakFilter` (previously in Markdown reader). + Provide custom `isURI` that rejects unknown schemes. (Albert Krewinkel, #2713). We also export the set of known `schemes`. The new function replaces the function of the same name @@ -841,12 +847,13 @@ pandoc (2.0) well-known. All official IANA schemes (as of 2017-05-22) are included in the set of known schemes. The four non-official schemes `doi`, `isbn`, `javascript`, and `pmid` are kept. - + Removed `err`. - + Removed `readDataFile`, `readDefaultDataFile`, `getReferenceDocx`, + + Remove `err`. + + Remove `readDataFile`, `readDefaultDataFile`, `getReferenceDocx`, `getReferenceODT`. These now live in `Text.Pandoc.Class`, where they are defined in terms of `PandocMonad` primitives and have different signatures. + Remove `openURL`. Use `openURL` from `Text.Pandoc.Class` instead. + + Add `underlineSpan`. * `Text.Pandoc.Readers.HTML`: export new `NamedTag` class. |