We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a515990 commit 7fcfc67Copy full SHA for 7fcfc67
addon/globalPlugins/MathCAT/MathCAT.py
@@ -178,6 +178,8 @@ def ConvertSSMLTextForNVDA(text: str, language: str = "") -> list:
178
# MathCAT puts out spaces between words, the speak command seems to want to glom the strings together at times,
179
# so we need to add individual " "s to the output
180
out.extend((" ", m.group(0), " "))
181
+ # there is a bug in MS Word that concats the math and the next character outside of math, so we add a space
182
+ out.append(" ")
183
if mathCATLanguageSetting != language:
184
try:
185
libmathcat.SetPreference("Language", mathCATLanguageSetting)
0 commit comments