Preserving tags when converting to HTML

Is there some way to preserve tags when injected with the “-html” switch in the LINQ reporting engine and then converted to HTML?

For example, if a word document has:
<<["<span id=\"foo\">"] -html>> Some text <<["</span>"] -html>>

And then it is run through the LINQ report builder, then the output word document is converted to HTML, there would be a span somewhere in that document like:
<span id="foo">Some Text</span>

@chetan.desh I am afraid this is not possible. When HTML snippet is inserted into the document, it is converted to to Aspose.Words DOM and is not stored as is. Please, note that HTML and MS Word documents models are quite different, this makes it impossible to preserve HTML as is when it is inserted into the document.