diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-03-08 18:31:57 -0300 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-03-08 18:32:09 -0300 |
commit | 6936df82bbc79870fe9c61479e848a0cfbe6f1a0 (patch) | |
tree | 858c31cc5cd0457704fc3f7ec4895b535489316e | |
parent | 31b051e52950aa57c025f13650d4af430b6ef343 (diff) |
Hot fix #227. Add "-" to allowed chars in raw links
-rw-r--r-- | sx-question-print.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-question-print.el b/sx-question-print.el index 634b66d..f257e45 100644 --- a/sx-question-print.el +++ b/sx-question-print.el @@ -436,7 +436,7 @@ E.g.: (group-n 4 (and (and "http" (opt "s") "://") "" (>= 2 (any lower numeric "_%")) "." - (>= 2 (any lower numeric "/._%&#?=;")))))) + (>= 2 (any lower numeric "/-._%&#?=;")))))) "Regexp matching markdown links.") (defun sx-question-mode--process-markdown-in-region (beg end) |