Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/MiniWord/MiniWord.Implment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,8 @@ private static void AvoidSplitTagText(OpenXmlElement xmlElement)
{
var first = pool.First();
var newText = first.Clone() as Text;
newText.Text = s;
newText.Text = sb.ToString();
newText.Space = SpaceProcessingModeValues.Preserve;
Comment thread
donaldevine marked this conversation as resolved.
Outdated
first.Parent.InsertBefore(newText, first);
foreach (var t in pool)
{
Expand Down