Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-10-24 | Rename manEscapes -> standardEscapes | John MacFarlane | 1 | -3/+3 | |
2018-10-23 | Groff writer character escaping changes. | John MacFarlane | 1 | -9/+14 | |
T.P.GroffChar: replaced `essentialEscapes` with `manEscapes`, which includes all the escapes mentioned in the groff_man manual. T.P.Writers.Groff: removed escapeCode; changed parameter on escapeString from Bool to new type `EscapeMode`. Rewrote `escapeString`. | |||||
2018-10-22 | GroffChar: Proper combining characters for combining accents. | John MacFarlane | 1 | -6/+21 | |
2018-10-18 | GroffChar: fixed interpretation of `\-`. | John MacFarlane | 1 | -1/+1 | |
It is the ascii - sign, not the unicode hyphen. | |||||
2018-10-18 | Groff escaping changes. | John MacFarlane | 1 | -15/+16 | |
- `--ascii` is now turned on automatically for man output, for portability. All man output will be escaped to ASCII. - In T.P.Writers.Groff, `escapeChar`, `escapeString`, and `escapeCode` now take a boolean parameter that selects ascii-only output. This is used by the Ms writer for `--ascii`, instead of doing an extra pass after writing the document. - In ms output without `--ascii`, unicode is used whenever possible (e.g. for double quotes). - A few escapes are changed: e.g. `\[rs]` instead of `\\` for backslash, and `\ga]` instead of `` \` `` for backtick. | |||||
2018-10-18 | Add Text.Pandoc.GroffChar. | John MacFarlane | 1 | -0/+418 | |
This will hold common escaping data for groff characters. |