Add percent sign to list of escape chars
* org.el (org-link-escape-chars-browser, org-link-escape-chars): Add percent sign to list of escape chars.
This commit is contained in:
parent
d8c2cad3ef
commit
1350e57626
|
@ -8603,14 +8603,14 @@ according to FMT (default from `org-email-link-description-format')."
|
|||
"]"))
|
||||
|
||||
(defconst org-link-escape-chars
|
||||
'(?\ ?\[ ?\] ?\; ?\= ?\+)
|
||||
'(?\ ?\[ ?\] ?\; ?\= ?\+ ?\%)
|
||||
"List of characters that should be escaped in link.
|
||||
This is the list that is used for internal purposes.")
|
||||
|
||||
(defvar org-url-encoding-use-url-hexify nil)
|
||||
|
||||
(defconst org-link-escape-chars-browser
|
||||
'(?\ )
|
||||
'(?\ ?\%)
|
||||
"List of escapes for characters that are problematic in links.
|
||||
This is the list that is used before handing over to the browser.")
|
||||
|
||||
|
|
Loading…
Reference in New Issue