When saving a file that has HTML content starting with a pre tag using Docx, the first line is duplicated.

Open
#489 1 comment 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
3/5
Estimated time
1-2 days
Newbie friendliness
48/100
Issue type
Bug
Clarity
Mostly clear
Activity status
Quiet
Tech stack
csharp
Domain
backend

Research direction

Start by reproducing the issue through DocX.InsertContent with the HTML snippet, comparing a self-closing br tag with the expanded form. Trace the HTML handling involved and add a regression test showing that content in the initial pre tag is not duplicated; done means both forms produce the expected document.

Written by the indexing model from the issue text.

Description

When saving HTML content to a file using Docx, it duplicates the first line if a break is inserted on the second line. Below is a code snippet example. The content in the pre tag will show in the file twice.

Imports Xceed.Document.NET
Imports Xceed.Words.NET

Dim sbHtmlContent As New StringBuilder

sbHtmlContent.Append("<pre>schema-version = 1.0.0</pre>")

sbHtmlContent.Append("<br/>")

sbHtmlContent.Append("<p>some other content<p/>")

Dim htmlContent = sbHtmlContent.ToString

Dim fullFileName As String = "pathtofile.doc"

Dim doc As Xceed.Words.NET.DocX = Xceed.Words.NET.DocX.Create(fullFileName)

doc.InsertContent(htmlContent, Xceed.Document.NET.ContentType.Html)

doc.Save()

UPDATE: This is happening because of the self closing tag. If I replace this

sbHtmlContent.Append("<br/>")

with this

sbHtmlContent.Append("<br></br>")

It doesn't duplicate the first line.

Dominant language
C#
Stars
1.9k
Forks
483
PR merge metrics
No merged PRs in 30d

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from xceedsoftware/DocX

All issues in xceedsoftware/DocX

Similar issues

More C# issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.