gsub and other things

This commit is contained in:
Akamaru 2015-06-25 22:08:20 +02:00
parent 5937e58687
commit 91edf21fcf
1 changed files with 5 additions and 4 deletions

View File

@ -14,6 +14,7 @@ function getTitle(page)
s = string.gsub(s, "&", "&")
s = string.gsub(s, "'", "'")
s = string.gsub(s, "–", "")
s = string.gsub(s, "»", "»")
-- Put all the tags in lowercase.
s = string.gsub(s, "(<[^ >]+)", string.lower)
@ -49,16 +50,16 @@ function run(msg, matches)
string.match(msg.text, "twitch.tv") or
string.match(msg.text, "steamcommunity.com/app/") or
string.match(msg.text, "deviantart.com") then
print('Invalide, da "'..title..'"')
print('Nicht gültig, da "'..title..'"')
else
return title
end
end
return {
description = "Postet URL-Titel",
usage = {"Irgendein Link"},
patterns = {"^(https?://[%w-_%.%?%.:,/%+=&#!]+)$",},
description = "Postet den URL-Titel",
usage = {""},
patterns = {"^(https?://[%w-_%.%?%.:,/%+=&#!]+)$"},
run = run
}
end