Keyword Align

Ideas for new features

Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard

Post Reply
Jason Shallcross
Posts: 13
Joined: Tue Sep 02, 2003 2:43 pm
Location: Brighton, East Sussex
Contact:

Keyword Align

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