There was an error while loading. Please reload this page.
1 parent ee6fe25 commit 3661853Copy full SHA for 3661853
1 file changed
packages/markitdown/src/markitdown/converters/_rss_converter.py
@@ -186,8 +186,9 @@ def _parse_rss_type(
186
channel_title = self._get_data_by_tag_name(channel, "title")
187
channel_description = self._get_data_by_tag_name(channel, "description")
188
items = channel.getElementsByTagName("item")
189
+ md_text = ""
190
if channel_title:
- md_text = f"# {channel_title}\n"
191
+ md_text += f"# {channel_title}\n"
192
if channel_description:
193
md_text += f"{channel_description}\n"
194
for item in items:
0 commit comments