From c5692d062ca3cb8eb15948d7fbc2f5eb68be6cda Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Thu, 25 Oct 2018 01:32:40 +0000 Subject: Implement the \f(CW and \f(CR (constant width font) escape sequences for HTML output. Somewhat relevant because pod2man(1) relies on this. Missing feature reported by Pali dot Rohar at gmail dot com. Note that constant width font was already correctly selected before this when required by semantic markup. Only attempting physical markup with the low-level escape sequence was ineffective. --- mandoc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'mandoc.h') diff --git a/mandoc.h b/mandoc.h index 52c9232f..ad1a6d3c 100644 --- a/mandoc.h +++ b/mandoc.h @@ -438,6 +438,7 @@ enum mandoc_esc { ESCAPE_FONTITALIC, /* italic font mode */ ESCAPE_FONTBI, /* bold italic font mode */ ESCAPE_FONTROMAN, /* roman font mode */ + ESCAPE_FONTCW, /* constant width font mode */ ESCAPE_FONTPREV, /* previous font mode */ ESCAPE_NUMBERED, /* a numbered glyph */ ESCAPE_UNICODE, /* a unicode codepoint */ -- cgit