Closed ProximaNova closed 8 years ago
If only it was possible { I could replace ? <a>tag</a> # with ? <a>tag</a> # } else { :( }
Vim would work (I don't know if JavaScript can back-reference though):
:%s/? <a href="index.php?page=post&s=list&tags=(.*?)>.*?<\/a> (\d+)<\/span> /? <a href="index.php?page=post&s=list&tags=\1>\1<\/a> \2<\/span>/g
But I could modify <li> elements in <div id="tag_list">
<li>
<div id="tag_list">
Also jQuery doesn't work with userscripts: if it did then it would help with child selection
Eh, I accomplished it with a sort of weird method.
Vim would work (I don't know if JavaScript can back-reference though):
But I could modify
<li>
elements in<div id="tag_list">
Also jQuery doesn't work with userscripts: if it did then it would help with child selection
Eh, I accomplished it with a sort of weird method.