User:GeorgeMoney/UserScripts/hacks/watchlist1

//

if(wgPageName == "Special:Watchlist") {
	addOnloadHook(function() {
		var lis = document.getElementById('bodyContent').getElementsByTagName('li');
		for(var j=0; j<lis.length; j++) {
			var children = lis[j].childNodes;
			for(var i=0; i<children.length; i++) {
				if(children[i].data && children[i].data.indexOf(". .") != -1) {
					//children[i].parentNode.removeChild(children[i]);
					children[i].data = children[i].data.replace(/\. \./g, '');
				}
			}
		}
	});
}
//