I'm using latest version, imagine following html: ``` <main><header>header</header></main> ``` With this options: ``` indent: auto indent-with-tabs: yes keep-tabs: yes wrap: 0 merge-divs: no merge-spans: no ``` Expected result would be: ``` <main> <header> header </header> </main> ``` But Tidy generates this: ``` <main> <header> header </header> </main> ``` I could not find any related option, is there any way to tell Tidy to intent nested levels too?