From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp0 ([2001:41d0:2:bcc0::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id W0RUCX8ak14IDAAA0tVLHw (envelope-from ) for ; Sun, 12 Apr 2020 13:41:19 +0000 Received: from aspmx2.migadu.com ([2001:41d0:2:bcc0::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp0 with LMTPS id gLhWEYEak17DDwAA1q6Kng (envelope-from ) for ; Sun, 12 Apr 2020 13:41:21 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx2.migadu.com (Postfix) with ESMTPS id 85B60682D77 for ; Sun, 12 Apr 2020 13:41:18 +0000 (UTC) Received: from localhost ([::1]:33586 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jNcrN-0002d9-4M for larch@yhetil.org; Sun, 12 Apr 2020 09:41:17 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:59049) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jNcqX-0002ZZ-0P for emacs-orgmode@gnu.org; Sun, 12 Apr 2020 09:40:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jNcqV-0005n1-HZ for emacs-orgmode@gnu.org; Sun, 12 Apr 2020 09:40:24 -0400 Received: from relay9-d.mail.gandi.net ([217.70.183.199]:45125) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jNcqV-0005mS-At for emacs-orgmode@gnu.org; Sun, 12 Apr 2020 09:40:23 -0400 X-Originating-IP: 86.134.152.98 Received: from localhost (host86-134-152-98.range86-134.btcentralplus.com [86.134.152.98]) (Authenticated sender: stig@brautaset.org) by relay9-d.mail.gandi.net (Postfix) with ESMTPSA id C4DC9FF804 for ; Sun, 12 Apr 2020 13:40:19 +0000 (UTC) From: Stig Brautaset To: emacs-orgmode@gnu.org Subject: org-rss feed title is concatenation of all post titles? (ECM included) Date: Sun, 12 Apr 2020 14:40:15 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 217.70.183.199 X-BeenThere: emacs-orgmode@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+larch=yhetil.org@gnu.org Sender: "Emacs-orgmode" X-Scanner: scn0 X-Spam-Score: -1.01 Authentication-Results: aspmx2.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx2.migadu.com: domain of emacs-orgmode-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=emacs-orgmode-bounces@gnu.org X-Scan-Result: default: False [-1.01 / 13.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; GENERIC_REPUTATION(0.00)[-0.57947866609474]; HAS_XOIP(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:209.51.188.0/24:c]; IP_REPUTATION_HAM(0.00)[asn: 22989(0.29), country: US(-0.01), ip: 209.51.188.17(-0.58)]; TO_DN_NONE(0.00)[]; MX_GOOD(-0.50)[cached: eggs.gnu.org]; MAILLIST(-0.20)[mailman]; FORGED_RECIPIENTS_MAILLIST(0.00)[]; RCVD_TLS_LAST(0.00)[]; R_DKIM_NA(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TAGGED_FROM(0.00)[larch=yhetil.org]; ASN(0.00)[asn:22989, ipnet:209.51.188.0/24, country:US]; ARC_NA(0.00)[]; SUBJECT_HAS_QUESTION(0.00)[]; RCVD_COUNT_FIVE(0.00)[6]; FROM_NEQ_ENVFROM(0.00)[stig@brautaset.org,emacs-orgmode-bounces@gnu.org]; FROM_HAS_DN(0.00)[]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[emacs-orgmode@gnu.org]; DMARC_NA(0.00)[brautaset.org]; HAS_LIST_UNSUB(-0.01)[]; RCPT_COUNT_ONE(0.00)[1]; MIME_TRACE(0.00)[0:+]; FORGED_SENDER_MAILLIST(0.00)[] X-TUID: M5QSs7prNtas Hi, I'm using org-rss.el to generate an RSS feed for my blog. I use a separate file, ~feed.org~, which uses ~#+include:~ to source entries. This works well for each item in the feed, but not for the main feed title and feed image title, which appears to be a concatenation of the feed and all the titles in all the items. If I export RSS for the below ~feed.org~, the RSS title becomes: : The Feed Title Title of first post Title of second post However I *expect* it to be just: : The Feed Title The feed image title also is similarly affected: #+begin_src xml https://orgmode.org/img/org-mode-unicorn-logo.png The Feed Title Title of first post Title of second post #+end_src Below is the Org files used in this example. feed.org: #+begin_src org ,#+title: The Feed Title ,* First Post :PROPERTIES: :RSS_PERMALINK: first-post.html :END: ,#+include: first-post.org ,* Second Post :PROPERTIES: :RSS_PERMALINK: second-post.html :END: ,#+include: second-post.org #+end_src first-post.org: #+begin_src org ,#+title: Title of first post First post content. #+end_src second-post: #+begin_src org ,#+title: Title of second post Second post content. #+end_src Software Versions: - macOS 10.15.3 - Org mode version 9.3.2 (9.3.2-24-g5c72d6-elpaplus @ /Users/stig/.emacs.d/elpa/org-plus-contrib-20200203/) - GNU Emacs 26.3 (build 1, x86_64-apple-darwin18.2.0, NS appkit-1671.20 Version 10.14.3 (Build 18D109)) of 2019-09-02 Regards, Stig