docx2html
docx2html copied to clipboard
Link anchor tags and content after '#' is removed.
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">