diff options
-rw-r--r-- | _extensions/js/nobreaks/nobreaks.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_extensions/js/nobreaks/nobreaks.lua b/_extensions/js/nobreaks/nobreaks.lua index dad13d5..b1d60e2 100644 --- a/_extensions/js/nobreaks/nobreaks.lua +++ b/_extensions/js/nobreaks/nobreaks.lua @@ -10,7 +10,7 @@ function Para(el) if el_prev and el_next and el_prev.t == "Str" and el_next.t == "Str" and string.match(el_prev.text, "%d$") - and string.match(el_next.text, "^[%a%%§°]") + and string.match(el_next.text, "^[%a%%§°Ωμ]") then el.content[i] = non_breaking_space end |