Generalized Team Skeet scraper, added MYLF network and various Team Skeet partner channels.

This commit is contained in:
DebaucheryLibrarian
2021-03-29 22:22:56 +02:00
parent d17dbf1b36
commit c386a9098f
298 changed files with 456 additions and 69 deletions

View File

@@ -49,7 +49,7 @@ function slugify(string, delimiter = '-', {
const slugComponents = string
.trim()
.toLowerCase()
.replace(removePunctuation && /[.,:;'"]/g, '')
.replace(removePunctuation && /[.,:;'"_-]/g, '')
.match(/[A-Za-zÀ-ÖØ-öø-ÿ0-9]+/g);
if (!slugComponents) {