From b12fb55730df8427c41fd735d1348528427b9101 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 8 Aug 2024 08:37:36 +0200 Subject: [PATCH] roffit: handle inline `\[bu]` --- roffit | 1 + 1 file changed, 1 insertion(+) diff --git a/roffit b/roffit index e5c47cd..9bf5565 100755 --- a/roffit +++ b/roffit @@ -586,6 +586,7 @@ sub parsefile { $txt =~ s/\\\(aq/&apos\;/g; $txt =~ s/\\\(cq/&apos\;/g; $txt =~ s/\\\(dq/"\;/g; + $txt =~ s:\\\[bu\]:·\;:gi; # \e is the "escape character", defaults to backslash $txt =~ s/\\e/\/g;