Hi there, I'm using some code like this to import from Word.
Using fileStream As New FileStream(Server.MapPath(FilePath), FileMode.Open, FileAccess.Read)
EditorContent.LoadDocxContent(fileStream)
End Using
In principle this works fine. However, if text has been formatted as Heading 3 in Word, then it comes through as <p>My text</p> instead of <h3>My text</h3>.
However, if I copy/paste from Word into the editor, then the <h3> tags are preserved. Any ideas why the import is not preserving the <h3> tags?