This commit is contained in:
stax76
2023-12-24 07:34:12 +01:00
parent 764f00ed3a
commit 86c823bfde
10 changed files with 417 additions and 24 deletions

View File

@@ -284,6 +284,9 @@ public static class InputHelp
if (string.IsNullOrEmpty(content))
return bindings;
if (content.Contains('\t'))
content = content.Replace('\t', ' ');
foreach (string it in content.Split('\n'))
{
string line = it.Trim();