Prince takes the following document:
and produces the following verbose output:
and uses Times for the italic part of the html.
Is there anything I'm doing wrong?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>untitled</title>
<style type="text/css" media="all">
body {
font-family: 'Courier';
}
</style>
</head>
<body>
<div>
<p>Lorem ipsum dolor sit amet, <i>consectetur adipisicing</i> elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</div>
</body>
</html>
and produces the following verbose output:
prince: loading HTML input: /Users/oliver/Desktop/untitled.html
prince: used font: Courier, Regular
prince: warning: bad argument
prince: used font: Times, Italic
and uses Times for the italic part of the html.
Is there anything I'm doing wrong?