On Mon, 4 Nov 2024, G. Branden Robinson wrote:
a) transforms a string to upper caseYes, since groff 1.23.0 we have this. groff(7): .stringup str Replace each byte in the string named str with its uppercase version.
Great.
b) capitalizes the first letter of a string?That, we don't have. You could construct it with a macro employing `substring` and `stringup` requests.
Thanks - Damian