In phpword, I see you used to be able to pass a styles array to the addHTML function, but not any more.
If my HTML doesn't have any inline styles set, is there a way to specify a fontStyle and paragraphStyle so it doesn't end up as plain 'Arial 10pt' in the Word file?
I've had some success by setting default styles before calling addHTML:
$phpWord->setDefaultFontName('...');
$phpWord->setDefaultFontSize('...');
$phpWord->setDefaultParagraphStyle('...');
However, this isn't a complete font style. For example, how would you change the text's color?