Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ public async Task ReadAsync_ComplexDocument_PreservesStructureCorrectly()

// Empty paragraph with heading style should be just the hashes? Or maybe handled gracefully?
// Implementation: content.Append(new string('#', level)).Append(' '); then append text.
// So empty paragraph -> "# \n"
content.ShouldContain("# \n");
// So empty paragraph -> "# " + Environment.NewLine
content.ShouldContain("# " + Environment.NewLine);
}

private static void CreateDocxWithHeadings(string filePath)
Expand Down
Loading