sorry, the description was not complete when I hit the post button...
An example for the Notes field HTML is:
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<style>
div.note { white-space:pre-wrap }
div.note ul {
white-space: normal;
margin: 0;
}
div.note li { white-space: pre-wrap }
</style>
</head>
<body>
<div class="note" title="Note">This document describes all relevant information for the
<ul>
<li>Use Cases</li>
<li>Software Architecture</li>
<li>Software Design</li>
<li>Test Specification *)</li>
<li>Requirements Matrix</li>
<li>List of all project documents specifying the referenced release versions.</li>
</ul>
*) For technical reasons, the release test results cannot be included in this document.</div>
</body>
</html>
With the release versions of Prince (e.g. 14.2), the HTML rendered fine with the CSS styles in the <style> field. Below the list there was one blank line.
With the latest build versions of Prince (e.g. Prince 20220808) there is an extra blank line below the list - and two blank lines altogether!
I know that this is compatible with rendering of current browsers, and I it also correct as there are actually two newline characters!
But I still require the old behavior - is there any chance to revert to the old rendering?
- - -
Johann