3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 20:39:25 +01:00
This commit is contained in:
reality 2016-03-22 21:36:26 +00:00
parent 0473597b0a
commit ba2ad2649f

View File

@ -36,7 +36,7 @@ var wikipedia = function(dbot) {
body = _.filter(body, function(line) {
var spaces = line.match(/\s/g);
return line != '' && !line.match(/^\s+$/) && !line.match(/^Category:/) && !line.match(/http:\/\//) && !line.match(/\|/) && spaces && spaces.length > 10 && spaces.length < 60;
return line != '' && !line.match(/^\s+$/) && !line.match(/^Category:/) && !line.match(/http:\/\//) && !line.match(/\|/) && !line.match(/:$/) && spaces && spaces.length > 10 && spaces.length < 60;
});
console.log(body);