Update --mk

This commit is contained in:
Marcus Kammer 2023-01-15 09:38:53 +01:00
parent f4a168147a
commit 3627ec0869
Signed by: marcuskammer
GPG key ID: C374817BE285268F

View file

@ -9,8 +9,8 @@
"Locally mirror a website using `wget -mkEpnp <url>`")
(defvar mk/useful-regex
'(("[\w\s]+:" "match any word or space that precede the :")
("\[.*\]" "search for anything in square brackets")
'(("match any word or space that precede the :" . "[\w\s]+:")
("search for anything in square brackets" . "\[.*\]")
("[A-Za-z]+" "upper and lowercase english alphabet")
("[0-9]" "numbers from 0 to 9")
("[A-Za-z\-\.]" "upper and lowercase english alphabet, - and .")