Hi!
I am trying to save an HTML file as RTF while preserving the format. I have the element styles in HTML defined 2 ways - inline and as a local class definition. (example below).
Unfortunately, aspose.word is losing both formats.
How can I save HTML as RTF and preserve the formatting from my HTML?
TIA!
Rich
For example (these are small snips - in the real html file, the formatting is good):
.top_node
{
font-family:Arial;
font-size:16px;
font-weight:bold;
vertical-align:text-top;
padding: 8px 0 8px 0;
}
...