From 5bb370687f22001dab081200f430800d00305f9b Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 13 Oct 2023 16:44:38 -0700 Subject: Bugfix: spaces don't interrupt formatting. - Undo the hack which was for the sake of Vim help syntax: that spaces return to normal mode. This was because Vim help syntax doesn't handles spaces as in *two words*; we had to typeset that as *two* *words*. That interferes with searchability though. We want {B{two words}B} and not {B{two}B} {B{words}B}. --- mnpgr.tl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mnpgr.tl b/mnpgr.tl index df02279..deba513 100755 --- a/mnpgr.tl +++ b/mnpgr.tl @@ -51,7 +51,7 @@ (each ((tok (tok #/.\b.(\b.)?/ t line))) (match-case tok ("") - (`@{x #/ +/}` (output-text x :norm)) + (`@{x #/ +/}` (output-text x cur-mode)) (`_\b@x\b@x` (output-text x :bital)) (`_\b@x` (output-text x :ital)) (`@x\b@x` (output-text x :bold)) -- cgit v1.2.3