mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-23 07:18:53 +00:00
Unescape rss element content.
* org-feed.el (org-feed-parse-rss-entry): Unescape rss element content.
This commit is contained in:
parent
516640aff9
commit
6875716e76
@ -605,7 +605,7 @@ containing the properties `:guid' and `:item-full-text'."
|
||||
nil t)
|
||||
(setq entry (plist-put entry
|
||||
(intern (concat ":" (match-string 1)))
|
||||
(match-string 2))))
|
||||
(org-feed-unescape (match-string 2)))))
|
||||
(goto-char (point-min))
|
||||
(unless (re-search-forward "isPermaLink[ \t]*=[ \t]*\"false\"" nil t)
|
||||
(setq entry (plist-put entry :guid-permalink t))))
|
||||
@ -638,8 +638,8 @@ formatted as a string, not the original XML data."
|
||||
'href)))
|
||||
;; Add <title/> as :title.
|
||||
(setq entry (plist-put entry :title
|
||||
(car (xml-node-children
|
||||
(car (xml-get-children xml 'title))))))
|
||||
(org-feed-unescape (car (xml-node-children
|
||||
(car (xml-get-children xml 'title)))))))
|
||||
(let* ((content (car (xml-get-children xml 'content)))
|
||||
(type (xml-get-attribute-or-nil content 'type)))
|
||||
(when content
|
||||
|
Loading…
Reference in New Issue
Block a user