We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee484e7 commit d701b81Copy full SHA for d701b81
Tabula/Cell.cs
@@ -81,7 +81,7 @@ public override string GetText(bool useLineReturns)
81
sb.Append(tc.GetText());
82
curTop = tc.Bottom;
83
}
84
- return sb.ToString().Trim();
+ return sb.ToString();
85
86
87
/// <summary>
Tabula/TextChunk.cs
@@ -244,7 +244,7 @@ public override string GetText()
244
sb.Append(te.GetText());
245
246
247
- return sb.ToString().Normalize(NormalizationForm.FormKC).Trim();
+ return sb.ToString().Normalize(NormalizationForm.FormKC);
248
249
250
0 commit comments