With the following code Prince 7.0 beta 1 hangs.
The following change allows Prince to run successfully.
If I change the font to Arial Prince runs successfully and the text is wrapped after the last slash.
<html>
<head>
<title>TEST</title>
<style type="text/css">
body {
font-family: Company Font Type Light;
letter-spacing: -0.02pt;
font-size: 9pt;
text-align: justify;
}
</style>
</head>
<body>
<div style="float:right;">
<p>EUR/CHF/USD/JPY</p>
</div>
</body>
</html>
The following change allows Prince to run successfully.
<p style="white-space: nowrap;">EUR/CHF/USD/JPY</p>
If I change the font to Arial Prince runs successfully and the text is wrapped after the last slash.
Edited by pestafo