Hi,
I’m using builder.InsertHtml in my code to insert some html. What I want is the html to be indented by half inch on the left side. So for that in my html I replaced all
with
and it works fine. But my html may contain images, tables, lists etc (even the
tag have some other attributes in which case the replace isn’t successful). So using regular expression for each type of tag would be performance issue. I tried to wrap the whole html inside of
Thanks