Improved url regex.
authorTim Vaughan <tgvaughan@gmail.com>
Sat, 2 Nov 2019 12:04:19 +0000 (13:04 +0100)
committerTim Vaughan <tgvaughan@gmail.com>
Sat, 2 Nov 2019 12:04:19 +0000 (13:04 +0100)
elpher.el

index 75b582b..ab5ea69 100644 (file)
--- a/elpher.el
+++ b/elpher.el
@@ -671,7 +671,7 @@ If ADDRESS is not supplied or nil the record is rendered as an
 ;; Text rendering
 
 (defconst elpher-url-regex
-  "\\([a-zA-Z]+\\)://\\([a-zA-Z0-9.\-]*[a-zA-Z0-9\-]\\|\[[a-zA-Z0-9:]+\]\\)\\(:[0-9]+\\)?\\(/\\([0-9a-zA-Z\-_~?/@|:.]*[0-9a-zA-Z\-_~?/@|]\\)?\\)?"
+  "\\([a-zA-Z]+\\)://\\([a-zA-Z0-9.\-]*[a-zA-Z0-9\-]\\|\[[a-zA-Z0-9:]+\]\\)\\(:[0-9]+\\)?\\(/\\([0-9a-zA-Z\-_~?/@|:.%]*[0-9a-zA-Z\-_~?/@|]\\)?\\)?"
   "Regexp used to locate and buttniofy URLs in text files loaded by elpher.")
 
 (defun elpher-buttonify-urls (string)