We convert html-files to pdf-files by command line width prince 9.
If we set the pdf-author and -creator width multiple words, we geht warnings and errors. I think, price will load other files and use only the first defined word as author and creator.
Output:
If I define a single word like:
everything is fine.
I used the command line documentation to find help, but the arguments of the params are not specified in detail.
If we set the pdf-author and -creator width multiple words, we geht warnings and errors. I think, price will load other files and use only the first defined word as author and creator.
prince --pdf-author='This is a test author' --pdf-creator='This is a test author' -s 'style.css' 'index.html' -o 'test.pdf'
Output:
prince: warning: failed to load external entity "is"
prince: is: error: could not load input file
prince: warning: failed to load external entity "a"
prince: a: error: could not load input file
prince: warning: failed to load external entity "test"
prince: test: error: could not load input file
prince: warning: failed to load external entity "author"
prince: author: error: could not load input file
prince: warning: failed to load external entity "is"
prince: is: error: could not load input file
prince: warning: failed to load external entity "a"
prince: a: error: could not load input file
prince: warning: failed to load external entity "test"
prince: test: error: could not load input file
prince: warning: failed to load external entity "author"
prince: author: error: could not load input file
If I define a single word like:
prince --pdf-author='testauthor' --pdf-creator='testauthor' -s 'style.css' 'index.html' -o 'test.pdf'
everything is fine.
I used the command line documentation to find help, but the arguments of the params are not specified in detail.