Hi there
I have HTML like this:
I want Prince to break after ";" characters, so I added soft hyphen characters:
Nothing happens. When I enable hyphenation, hyphens occur inside words as well, which I don't want. Enabling hypenation:
How should discretionary hyphens be done?
I have HTML like this:
<td><code class="literal">Data Source=<em class="replaceable"><code>server012</code></em>;Initial Catalog=<em class="replaceable"><code>catalog1</code></em>;User Id=user;password=password</code></td>
I want Prince to break after ";" characters, so I added soft hyphen characters:
<td><code class="literal">Data Source=<em class="replaceable"><code>server012</code></em>;­Initial Catalog=<em class="replaceable"><code>catalog1</code></em>;­User Id=user;password=password</code></td>
Nothing happens. When I enable hyphenation, hyphens occur inside words as well, which I don't want. Enabling hypenation:
code.literal {
hyphens: auto;
}
How should discretionary hyphens be done?