diff options
| author | Arun Isaac | 2025-11-13 23:32:53 +0000 |
|---|---|---|
| committer | Arun Isaac | 2025-11-13 23:32:53 +0000 |
| commit | 91653118262741423f97b16810acd85fcf0703cf (patch) | |
| tree | 0d1c8e0c7def34a8361a63662534d2869a8a54a7 | |
| parent | 849c9cd3e8971c2f468e7281599d0370c1d0f049 (diff) | |
| download | ennum-91653118262741423f97b16810acd85fcf0703cf.tar.gz ennum-91653118262741423f97b16810acd85fcf0703cf.tar.lz ennum-91653118262741423f97b16810acd85fcf0703cf.zip | |
Encode URIs.
| -rw-r--r-- | ennum.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ennum.el b/ennum.el index c2c1054..f6d19d4 100644 --- a/ennum.el +++ b/ennum.el @@ -669,8 +669,9 @@ result as a string." posts interned-post-files)))))))) (defun ennum--feed-entry (post interned-post-file) - (let ((link (ennum--absolute-uri (ennum--org-output-filename - (ennum-post-filename post))))) + (let ((link (url-encode-url + (ennum--absolute-uri (ennum--org-output-filename + (ennum-post-filename post)))))) `(entry (id ,link) (title :xml:lang ,(ennum-post-language post) ,(ennum-post-title post)) (updated ,(ennum--atom-date (ennum-post-date post))) |
