ox-rss.el (org-rss-build-channel-info): Don't export the title
* ox-rss.el (org-rss-build-channel-info): Don't export the title of the RSS channel, as it produce invalid RSS 2.0.
This commit is contained in:
parent
edcf9c95eb
commit
21d1d4d137
|
@ -304,7 +304,7 @@ as a communication channel."
|
||||||
(defun org-rss-build-channel-info (info)
|
(defun org-rss-build-channel-info (info)
|
||||||
"Build the RSS channel information."
|
"Build the RSS channel information."
|
||||||
(let* ((system-time-locale "C")
|
(let* ((system-time-locale "C")
|
||||||
(title (org-export-data (plist-get info :title) info))
|
(title (plist-get info :title))
|
||||||
(email (org-export-data (plist-get info :email) info))
|
(email (org-export-data (plist-get info :email) info))
|
||||||
(author (and (plist-get info :with-author)
|
(author (and (plist-get info :with-author)
|
||||||
(let ((auth (plist-get info :author)))
|
(let ((auth (plist-get info :author)))
|
||||||
|
|
Loading…
Reference in New Issue