i have one docx file…added some data and converted into html.i can see the date in html file.but i couldnt see the data while converting from html to pdf or docx…which is working previously.so could you please check the attachments ( data is “test” under the table)
field_missing.zip (20.7 KB)
@farshadpalayil This is an expected behavior. Text under the table is marked with -aw-import
attribute:
<span style="-aw-import:ignore"> Test1</span>
This attribute is a custom Aspose.Words HTML style attribute, which is used to mark nodes, which should be ignored upon importing HTML document.
because of this style “style=”-aw-import:ignore"" i couldn’t download as pdf or docx…i tried through your conversion online URL also.how to solve this issue?its a high priority issue currently we are facing…
@farshadpalayil As I have mentioned the behavior is expected. -aw-import:ignore
attribute is added by Aspose.Words upon saving document to HTML if it is require to skip the marked node upon reading HTML back into Aspose.Words DOM.
is there any work around for this one?i have to disable this behavior…
@farshadpalayil The only way to work this around is to manually remove -aw-import:ignore
from HTML before importing it into Aspose.Words DOM.
ok let me try…is this recently added new feature?
No, this behavior is not new. It has remained unchanged since the addition of the -aw-import:ignore
attribute, which is designed to skip content during HTML roundtrip processes.