Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-09-10 | Remove redundant import. | John MacFarlane | 1 | -1/+1 | |
2021-09-08 | RTF reader: support `\binN` for binary image data. | John MacFarlane | 1 | -11/+22 | |
2021-09-04 | RTF reader: better handling of `\*` and bookmarks. | John MacFarlane | 1 | -8/+8 | |
We now ensure that groups starting with `\*` never cause text to be added to the document. In addition, bookmarks now create a span between the start and end of the bookmark, rather than an empty span. | |||||
2021-09-04 | Minor renaming to avoid shadowing. | John MacFarlane | 1 | -2/+2 | |
2021-09-03 | RTF reader: if doc begins with {\rtf1 ... } only parse its contents. | John MacFarlane | 1 | -1/+7 | |
Some documents seem to have non-RTF (e.g. XML) material after the `{\rtf1 ... }` group. | |||||
2021-09-03 | RTF reader: Ignore `\pgdsc` group. | John MacFarlane | 1 | -0/+1 | |
Otherwise we get style names treated as test. | |||||
2021-08-10 | Fix RTF table parsing bug that created undesired nested tables. | John MacFarlane | 1 | -1/+1 | |
Closes #7488. | |||||
2021-08-10 | Add RTF reader. | John MacFarlane | 1 | -0/+1333 | |
- `rtf` is now supported as an input format as well as output. - New module Text.Pandoc.Readers.RTF (exporting `readRTF`). [API change] Closes #3982. |