B2020-100 Wolf Creek (Carolee) reported issues with adding a hyphen in the middle of Table text that was bolded and underlined.

This commit is contained in:
Rich
2020-08-06 17:48:54 +00:00
parent 49bda264f9
commit da6ecf841b
3 changed files with 12 additions and 8 deletions

View File

@@ -1294,8 +1294,8 @@ namespace VEPROMS.CSLA.Library
string token = m.Groups[1].Value;
switch (token[1])
{
case '_':
return token.Trim() ; // B2020-104 with .NET 4.8, a hard dash is represented as "\_" in the RTF
case '_': // B2020-100 New Non-Breaking Hyphen
return token.Trim();
case '\\':
return token;
case 'u':