fix when --out parameter contain more space, and support single quotes
This commit is contained in:
parent
34823e27bb
commit
067c369561
|
@ -81,13 +81,13 @@ angular
|
||||||
.chain(this.uris.trim().split(/\r?\n/g))
|
.chain(this.uris.trim().split(/\r?\n/g))
|
||||||
.map(function(d) {
|
.map(function(d) {
|
||||||
return _(d)
|
return _(d)
|
||||||
.replace(/("[^"]*")/g, function(c) {
|
.replace(/["'][^"]*['"]/g, function(c) {
|
||||||
return c.replace('%','%25').replace(' ','%20');
|
return c.replace(/%/g,'%25').replace(/ /g,'%20');
|
||||||
})
|
})
|
||||||
.trim()
|
.trim()
|
||||||
.split(/\s+/g)
|
.split(/\s+/g)
|
||||||
.map(function(c) {
|
.map(function(c) {
|
||||||
return c.replace('%20',' ').replace('%25','%').replace(/"/g,'');
|
return c.replace(/%20/g,' ').replace(/%25/g,'%').replace(/["']/g,'');
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.filter(function(d) { return d.length })
|
.filter(function(d) { return d.length })
|
||||||
|
|
Loading…
Reference in New Issue
Block a user