diff --git a/bundle/bundle--mk.el b/bundle/bundle--mk.el index abc2b88f..d507d22c 100644 --- a/bundle/bundle--mk.el +++ b/bundle/bundle--mk.el @@ -9,8 +9,8 @@ "Locally mirror a website using `wget -mkEpnp `") (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 .")