hi,
if I put a css link with a relative path in an html file served over http, it seems that prince does not follow it
I get the error:
However it seems that it is fine following js files with a relative path:
I can fix this by using the baseUrl option but shouldn't the behaviour be consistent?
if I put a css link with a relative path in an html file served over http, it seems that prince does not follow it
<head>
<title>Test Page</title>
<link rel="stylesheet" type="text/css" href="my.css">
</head>
I get the error:
my.css: warning: can't open input file: No such file or directory
However it seems that it is fine following js files with a relative path:
<script type="text/javascript" src="my.js"></script>
I can fix this by using the baseUrl option but shouldn't the behaviour be consistent?