docx2html icon indicating copy to clipboard operation
docx2html copied to clipboard

Link anchor tags and content after '#' is removed.

Open SGCBB opened this issue 2 years ago • 0 comments

Links/anchors in a document which contain a # have it and everything after the # stripped off. Is there a way to bypass this functionality to keep the original link?

Original:
<a href="https://example.com/file.mp3#t=00:02:00">
<a href="https://example.com/file.pdf#page=2">

After parse:
<a href="https://example.com/file.mp3">
<a href="https://example.com/file.pdf">

SGCBB avatar Mar 17 '22 21:03 SGCBB