Setting the Tab-width inside HTML Pages |
By default, the indentation width for the HTML tags and other HTML code is one tab. You can override this setting by changing the TabWidth
feature attribute of the Dom
object.
Change the tab width
Dom.SetFeature("TabWidth", n);
To use no indentation in all HTML files, insert the following code into your script:
Dom.SetFeature("TabWidth", 0);