<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Modules Disappearing After Edits in Editor in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1055275#M40975</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/445097"&gt;@JTBuys&lt;/a&gt;&amp;nbsp;, that code is the same exact code as the textElementBANNER macro listed at the top of the included code. The only difference is that the STL_macros.textElement macro exists in a separate file containing only macros that is being loaded in via an 'includes' statement at the top of the current file, as such:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{% import "/STL_Accenture_Theme_2024/templates/STL_modulepartials.html" as STL_macros %}
{{ require_css(get_asset_url('../../../css/STL_variants.css')) }}  
{% require_css %}
&amp;lt;style&amp;gt;
  .blog_events-post_banner {
    ...
  }
  ...
&amp;lt;/style&amp;gt;
{% end_required_css %}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Oct 2024 14:52:42 GMT</pubDate>
    <dc:creator>bearons</dc:creator>
    <dc:date>2024-10-15T14:52:42Z</dc:date>
    <item>
      <title>Modules Disappearing After Edits in Editor</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1054660#M40963</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;I am developing a blog post template using a series of custom modules. It appears that if I change the value of a text field within a module, the rest of the text fields in that module disappear on the page and don't reappear until the page or module is reloaded.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, each of the fields in the blog banner in the following screenshot are editable via the HubSpot content editor.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bearons_0-1728917544707.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/129260i3F27B2E79A3DB611/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bearons_0-1728917544707.png" alt="bearons_0-1728917544707.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I make a modification to a single one of the fields, 1-2 other fields will disappear from the screen. Below, I will change the 'Summary Text' field to add a single extra character:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bearons_1-1728917698350.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/129262i52A8FB23AE0D3716/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bearons_1-1728917698350.png" alt="bearons_1-1728917698350.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can see that the title field has completely disappeared and the subtitle field has reverted to a different date without the user making edits to that field.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using macros to develop some of these so I'm wondering if those only fire on page load or something along those lines? &lt;STRONG&gt;What could be causing these elements to disappear/change?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the code for my Blog Banner module:&lt;/P&gt;&lt;PRE&gt;{% macro textElementBANNER(element, class, text) %}&lt;BR /&gt;{% if element == "h1" %}&lt;BR /&gt;&amp;lt;h1 class="{{class}}"&amp;gt;{{text}}&amp;lt;/h1&amp;gt;&lt;BR /&gt;{% elif element == "h2" %}&lt;BR /&gt;&amp;lt;h2 class="{{class}}"&amp;gt;{{text}}&amp;lt;/h2&amp;gt;&lt;BR /&gt;{% elif element == "h3" %}&lt;BR /&gt;&amp;lt;h3 class="{{class}}"&amp;gt;{{text}}&amp;lt;/h3&amp;gt;&lt;BR /&gt;{% elif element == "h4" %}&lt;BR /&gt;&amp;lt;h4 class="{{class}}"&amp;gt;{{text}}&amp;lt;/h4&amp;gt;&lt;BR /&gt;{% elif element == "h5" %}&lt;BR /&gt;&amp;lt;h5 class="{{class}}"&amp;gt;{{text}}&amp;lt;/h5&amp;gt;&lt;BR /&gt;{% elif element == "h6" %}&lt;BR /&gt;&amp;lt;h6 class="{{class}}"&amp;gt;{{text}}&amp;lt;/h6&amp;gt;&lt;BR /&gt;{% elif element == "p" %}&lt;BR /&gt;&amp;lt;p class="{{class}}"&amp;gt;{{text}}&amp;lt;/p&amp;gt;&lt;BR /&gt;{% endif %}&lt;BR /&gt;{% endmacro %}&lt;BR /&gt;&amp;lt;section class="blog_events-post_banner dnd-section"&amp;gt;&lt;BR /&gt;&amp;lt;div class="row-fluid"&amp;gt;&lt;BR /&gt;&amp;lt;div class="blog_post-inner-wrapper"&amp;gt;&lt;BR /&gt;{% if module.choice_module_data_type == 'blog' %}&lt;BR /&gt;&amp;lt;div class="blog_post-wrap"&amp;gt;&lt;BR /&gt;&amp;lt;div class="post_details"&amp;gt;&lt;BR /&gt;&amp;lt;div class="section-title"&amp;gt;&lt;BR /&gt;{{ STL_macros.textElement(module.subtitle.element, "blog-banner__text blog-banner__subtitle", module.subtitle.text) }}&lt;BR /&gt;{{ textElementBANNER(module.title.element, "blog-banner__text blog-banner__title", content.name) }}&lt;BR /&gt;{% if !module.summary.enable_rich %}&lt;BR /&gt;{{ STL_macros.textElement(module.summary.element, "blog-banner__text blog-banner__summary", module.summary.text) }}&lt;BR /&gt;{% else %}&lt;BR /&gt;{{ module.summary.summary_rich }}&lt;BR /&gt;{% endif %}&lt;BR /&gt;{# &amp;lt;h2&amp;gt;{{ content.name }}&amp;lt;/h2&amp;gt; #}&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="badge-wrapper"&amp;gt;&lt;BR /&gt;{% if module.tag.tags == "default" %}&lt;BR /&gt;&amp;lt;div class="badge-wrapper--blogtag"&amp;gt;&lt;BR /&gt;{% for tag in content.tag_list %} &lt;BR /&gt;&amp;lt;a class="badge--blogtag" href="{{ blog_tag_url(group.id, tag.slug) }}"&amp;gt;&lt;BR /&gt;&amp;lt;p&amp;gt;{{ tag.name }}&amp;lt;/p&amp;gt;&lt;BR /&gt;&amp;lt;/a&amp;gt;&lt;BR /&gt;{% endfor %}&lt;BR /&gt;&amp;lt;/div&amp;gt; &lt;BR /&gt;{% else %}&lt;BR /&gt;&amp;lt;div class="badge-wrapper--blogtag"&amp;gt;&lt;BR /&gt;{% for tag in module.tag.custom_tags %}&lt;BR /&gt;&amp;lt;a class="badge--blogtag" href="{{ blog_tag_url(group.id, tag.slug) }}"&amp;gt;&lt;BR /&gt;&amp;lt;p&amp;gt;{{ tag.name }}&amp;lt;/p&amp;gt;&lt;BR /&gt;&amp;lt;/a&amp;gt;&lt;BR /&gt;{% endfor %}&lt;BR /&gt;&amp;lt;/div&amp;gt; &lt;BR /&gt;{% endif %} &lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;{{ module.datetest}}&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;{% endif %}&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/section&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2024 14:59:19 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1054660#M40963</guid>
      <dc:creator>bearons</dc:creator>
      <dc:date>2024-10-14T14:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: Modules Disappearing After Edits in Editor</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1054972#M40967</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/813127"&gt;@bearons&lt;/a&gt;&lt;/SPAN&gt; and welcome to the Community!&lt;BR /&gt;We are so glad to have you here!&lt;BR /&gt;&lt;BR /&gt;Thanks for asking the Community and for sharing the code and screenshots!&lt;BR /&gt;&lt;BR /&gt;I'd love to put you in touch with some of our Top Experts: Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/363300"&gt;@Jnix284&lt;/a&gt;&lt;/SPAN&gt;, &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/17186"&gt;@Anton&lt;/a&gt; and &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/345416"&gt;@ChehakWadhdwa&lt;/a&gt;&lt;/SPAN&gt; do you have suggestions to help &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/813127"&gt;@bearons&lt;/a&gt;&lt;/SPAN&gt;, please?&lt;BR /&gt;&lt;BR /&gt;Thanks a lot and have a lovely day!&lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;Bérangère&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 06:46:04 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1054972#M40967</guid>
      <dc:creator>BérangèreL</dc:creator>
      <dc:date>2024-10-15T06:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: Modules Disappearing After Edits in Editor</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1055271#M40974</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/813127"&gt;@bearons&lt;/a&gt;, would you please also share the code for the&amp;nbsp;STL_macros.textElement macro as well as your fields json?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 14:46:07 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1055271#M40974</guid>
      <dc:creator>JTBuys</dc:creator>
      <dc:date>2024-10-15T14:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Modules Disappearing After Edits in Editor</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1055275#M40975</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/445097"&gt;@JTBuys&lt;/a&gt;&amp;nbsp;, that code is the same exact code as the textElementBANNER macro listed at the top of the included code. The only difference is that the STL_macros.textElement macro exists in a separate file containing only macros that is being loaded in via an 'includes' statement at the top of the current file, as such:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{% import "/STL_Accenture_Theme_2024/templates/STL_modulepartials.html" as STL_macros %}
{{ require_css(get_asset_url('../../../css/STL_variants.css')) }}  
{% require_css %}
&amp;lt;style&amp;gt;
  .blog_events-post_banner {
    ...
  }
  ...
&amp;lt;/style&amp;gt;
{% end_required_css %}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 14:52:42 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1055275#M40975</guid>
      <dc:creator>bearons</dc:creator>
      <dc:date>2024-10-15T14:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: Modules Disappearing After Edits in Editor</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1055280#M40976</link>
      <description>&lt;P&gt;Got it, thank you! I may know what is happening. I'll test on my end and let you know.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 14:54:50 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1055280#M40976</guid>
      <dc:creator>JTBuys</dc:creator>
      <dc:date>2024-10-15T14:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Modules Disappearing After Edits in Editor</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1055322#M40978</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/813127"&gt;@bearons&lt;/a&gt;, this is not related to the macros; I tested rending the content variables outside of the macro and they reverted to defualt values as well.&amp;nbsp;However, I did confirmed this is related to the content variables. So, this appears to have something to do with the timing of the module refresh and its access to the global content variable.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 15:54:16 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1055322#M40978</guid>
      <dc:creator>JTBuys</dc:creator>
      <dc:date>2024-10-15T15:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Modules Disappearing After Edits in Editor</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1211887#M44287</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/813127"&gt;@bearons&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/445097"&gt;@JTBuys&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Hi, I’m having the same issue just now.&lt;BR /&gt;How did you fix it?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2025 03:01:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1211887#M44287</guid>
      <dc:creator>nekolove</dc:creator>
      <dc:date>2025-10-14T03:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Modules Disappearing After Edits in Editor</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1214503#M44343</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/980872"&gt;@nekolove&lt;/a&gt;&lt;/SPAN&gt;, I hope that you are well!&lt;BR /&gt;&lt;BR /&gt;Thanks for flagging this to the HubSpot Community. To help troubleshoot, could you let us know:&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- Which editor are you using (email, landing page, website)?&lt;BR /&gt;- Does this happen to specific modules or any module you edit?&lt;BR /&gt;- Are there any error messages or warnings?&lt;BR /&gt;&lt;BR /&gt;A few things to try now:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;- &lt;A href="https://knowledge.hubspot.com/website-and-landing-pages/clear-your-browser-cache" target="_blank"&gt;Clear your browser cache&lt;/A&gt; and reload the editor.&lt;BR /&gt;- Try using a &lt;A href="https://knowledge.hubspot.com/account-security/browsers-supported-by-hubspot" target="_blank"&gt;different browser&lt;/A&gt; or incognito mode.&lt;BR /&gt;- Check the &lt;A href="https://knowledge.hubspot.com/website-pages/restore-a-previous-version-of-content" target="_blank"&gt;revision history&lt;/A&gt; to see if you can restore the missing module.&lt;BR /&gt;- Double-check that your &lt;A href="https://knowledge.hubspot.com/user-management/hubspot-user-permissions-guide" target="_blank"&gt;user permissions&lt;/A&gt; allow full editing.&lt;BR /&gt;&lt;BR /&gt;Also, I'd love to put you in touch with our Top Experts: Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/192581"&gt;@CSteinbach&lt;/a&gt;&lt;/SPAN&gt;, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/601366"&gt;@sylvain_tirreau&lt;/a&gt;&lt;/SPAN&gt; and &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/17186"&gt;@Anton&lt;/a&gt; do you have suggestions to help &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/980872"&gt;@nekolove&lt;/a&gt;&lt;/SPAN&gt;, please?&lt;BR /&gt;&lt;BR /&gt;Have a lovely day and thanks so much!&lt;BR /&gt;Bérangère&lt;/P&gt;</description>
      <pubDate>Tue, 21 Oct 2025 08:53:47 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1214503#M44343</guid>
      <dc:creator>BérangèreL</dc:creator>
      <dc:date>2025-10-21T08:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: Modules Disappearing After Edits in Editor</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1214506#M44344</link>
      <description>&lt;P&gt;Hi!&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/230185"&gt;@BérangèreL&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This issue occurred in the blog content.&lt;/P&gt;&lt;P&gt;The problem has been resolved!!&lt;/P&gt;&lt;P&gt;It was caused by the timing of the macro execution.&lt;/P&gt;&lt;P&gt;The process that tried to assign an ID to the title was the root cause.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Oct 2025 09:03:33 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1214506#M44344</guid>
      <dc:creator>nekolove</dc:creator>
      <dc:date>2025-10-21T09:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: Modules Disappearing After Edits in Editor</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1217889#M44394</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="color:var(--ck-color-mention-text);"&gt;&lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/980872"&gt;@nekolove&lt;/a&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;,&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for sharing your update and the resolution. Your feedback helps the community and others facing similar issues.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have any other questions or insights, feel free to post.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have a wonderful day! &lt;span class="lia-unicode-emoji" title=":sun_with_face:"&gt;🌞&lt;/span&gt;&lt;BR /&gt;Bérangère&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 07:59:58 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1217889#M44394</guid>
      <dc:creator>BérangèreL</dc:creator>
      <dc:date>2025-10-30T07:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: Modules Disappearing After Edits in Editor</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1230325#M44660</link>
      <description>&lt;P&gt;Glad you resolved, I believe that I needed to modify my approach with the macros as a result of this.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 15:09:02 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Modules-Disappearing-After-Edits-in-Editor/m-p/1230325#M44660</guid>
      <dc:creator>bearons</dc:creator>
      <dc:date>2025-12-02T15:09:02Z</dc:date>
    </item>
  </channel>
</rss>

