Page 1 of 1

Keyword Align

Posted: Mon Sep 22, 2003 10:45 am
by Jason Shallcross
Just a little reformatting idea, mostly for coders.
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">
becomes:

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" >