When hyphens get inserted into the PDF for justified text that uses `hyphens: auto;`, the hyphens are included when selecting and copying text. Is there a way to change this behavior, so that the PDF allows copy/pasting the original text, instead of the text as it's presented on the page?
For example, starting from this `foo.html` file:
then running this command:
produces a PDF whose first two lines of content copy paste like this:
where the hyphen (and even newline) between the two lines is included in the selection.
I'm interested in this because it seems like whatever the root cause of this is, also affects:
For example, starting from this `foo.html` file:
<style>
@page {
size: A5;
}
p {
text-align: justify;
hyphens: auto;
}
</style>
<p>
Call me Ishmael. Some years ago—never mind how long precisely—having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world. It is a way I have of driving off the spleen and regulating the circulation. Whenever I find myself growing grim about the mouth; whenever it is a damp, drizzly November in my soul; whenever I find myself involuntarily pausing before coffin warehouses, and bringing up the rear of every funeral I meet; and especially whenever my hypos get such an upper hand of me, that it requires a strong moral principle to prevent me from deliberately stepping into the street, and methodically knocking people’s hats off—then, I account it high time to get to sea as soon as I can. This is my substitute for pistol and ball. With a philosophical flourish Cato throws himself upon his sword; I quietly take to the ship. There is nothing surprising in this. If they but knew it, almost all men in their degree, some time or other, cherish very nearly the same feelings towards the ocean with me.
</p>
then running this command:
prince-15.4.1-macos/lib/prince/bin/prince foo.html
produces a PDF whose first two lines of content copy paste like this:
Call me Ishmael. Some years ago—never mind how long precise-
ly—having little or no money in my purse, and nothing particular
where the hyphen (and even newline) between the two lines is included in the selection.
I'm interested in this because it seems like whatever the root cause of this is, also affects:
- PDF highlight annotations (the PDF viewer's annotation list preview incldues include the hyphen characters)
- search results (instances of hyphenated words are not shown in search results)