I'm wondering if anyone knows of an app that would allow me to auto-sequence massive lists and the like. I'm finding it hard to explain! Basically I would like to do stuff like:
<p class="item_1_link">
<a href="item_1.html">
<img src="picture_1.jpg">
</a>
</p>
<p class="item_2_link">
<a href="item_2.html">
<img src="picture_2.jpg">
</a>
</p>
...and so on, without typing it out.
The above isn't an example of the code I'm trying to create of course, it's an example of the type of text manipulation I'm looking for!
Sorry this is a bit vague but any pointer in the right direction would be appreciated!

