for sure, regex inside of snippets (ala textmate or E) would make this a whole lot faster.
That said, you may be surprised at how fast the snippet method is. Remember there is also a shortcut for "select content between tags".
Code: Select all
<ul>
<li>Home</li>
<li>About</li>
<li>Contacts</li>
</ul>
stick the cursor inside of 'home' and hit ctrl+shift+q (select between tags) and then trigger the link snippet (mine is ctrl+alt+A) or webuilder's internal link method with ctrl+k.
the link snippet:
Code: Select all
before:
<a href="%[url]=[#]%">
after:
</a>
and another fast(ish) option.
paste "<li><a href="#"></a></li>" however many times you'll need it - make sure they're lined up like:
Code: Select all
<ul>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
</ul>
in the first <a> type "home" then hit Ctrl+left then hit down. type the next. repeat.