-
Notifications
You must be signed in to change notification settings - Fork 364
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spacing ignored when surround by <b> tag #26
Comments
I think this was related to #21 as the string width and replacement routines had drifted out of sync, giving an incorrect result. However, it was manifesting for me as too much space in the @scoldwell - How urgently do you need a release with this fix? |
Would sometime early next week be acceptable? We're still trying to get a release out, but I can instruct the customer how to get around the spacing issue if you need more time than that. |
OK, I'll do a release on Sunday or Monday night. I'll close this issue as I'm fairly certain that it's resolved. |
Sounds good. Thanks! Do you have a snapshot repo that I can use to test it out ahead of time? |
I've just set this up, so let me know if it works! Add to your pom: <repositories>
<repository>
<id>openhtmltopdf-snapshots</id>
<name>openhtmltopdf.com snapshots repository</name>
<url>https://snapshots.openhtmltopdf.com</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories> Version is |
Getting an error with the snapshot repo: Connection failed with exception: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target |
It turns out that Java does not yet trust Let's Encrypt https certificates. There are a few options.
http://stackoverflow.com/questions/21252800/how-to-tell-maven-to-disregard-ssl-errors-and-trusting-all-certs |
Tested and fixed. Thanks! |
The following causes the leading spaces to be dropped from the rendered output:
<b>    Text</b><br />
Whereas the following renders fine:
    <b>Text</b><br />
The text was updated successfully, but these errors were encountered: