roff-like markup to HTML with additional niceties.
git clone git://git.skec.site/pub/broff.git
log | files | refs | readme | license

commit 39b651135bb7843c551f84bde3c9a3c0764b152f
parent 776f07577d9f58222357e6f22b933ce60806c208
Author: Michael Skec
Date:   Wed, 22 Nov 2023 17:44:41 +1100

add superscript 'c' character escape

Diffstat:
Mbroff.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/broff.c b/broff.c @@ -144,6 +144,9 @@ print_escaped(const char *line, int l) HANDLE_ESC("\\(aq", "'"); HANDLE_ESC("\\(dq", "\""); + // Superscripts (not actual Roff escapes) + HANDLE_ESC("\\(Sc", "ᶜ"); + // TeX style typographer quotes; must be in this order HANDLE_ESC("``", "“"); HANDLE_ESC("''", "”");