Blogging platform with advanced tools for arts and sciences.
6

Configure Feed

Select the types of activity you want to include in your feed.

Add separator in RSS item

lemma (Jun 7, 2026, 7:12 PM -0500) e237461a ac55c168

+3 -2
+3 -2
infra/api/src/atom-utils.ts
··· 43 43 if (postUrl && postTitle) { 44 44 const urlXml = escXml(postUrl); 45 45 const titleXml = escHtmlContent(postTitle); 46 - preamble = `&lt;p&gt;&lt;em&gt;This is a text-only version of this post. If you want to read the full post with advanced elements like diagrams, it&amp;apos;s available at &lt;a href=&quot;${urlXml}&quot;&gt;${titleXml}&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;`; 46 + preamble = `&lt;p&gt;&lt;em&gt;This is a text-only version of this post. If you want to read the full post with advanced elements like diagrams, it&amp;apos;s available at:&lt;br/&gt;&lt;a href=&quot;${urlXml}&quot;&gt;${titleXml}&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;`; 47 47 } 48 48 49 - return `<summary type="html">${preamble}&lt;p&gt;${html}&lt;/p&gt;</summary>` 49 + const separator = preamble ? '&lt;hr/&gt;' : ''; 50 + return `<summary type="html">${preamble}${separator}&lt;p&gt;${html}&lt;/p&gt;</summary>` 50 51 }