If you have several lines of code which are similiar, it would be nice to be able to automatically tabulate them by adding spaces.
eg...
Code: Select all
<img src="one.jpg" width=100 height=10 alt="the first one">
<img src="two.jpg" width=50 height=100 alt="the second one">
<img src="three.jpg" width=100 height=10 alt="the third one">
<img src="four.jpg" width=50 height=100 alt="the fourth one">
Code: Select all
<img src="one.jpg" width=100 height=10 alt="the first one" >
<img src="two.jpg" width=50 height=100 alt="the second one" >
<img src="three.jpg" width=100 height=10 alt="the third one" >
<img src="four.jpg" width=50 height=100 alt="the fourth one" >