Visual Studio 2008 insists on indenting HTML like this:
<h1>
title</h1>
<h2>
subtitle</h2>
where for me, this is much nicer:
<h1>title</h1>
<h2>subtitle</h2>
Is there any way to tell Visual Studio 2008 to use the later indentation style when doing auto-formating?