File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ See [GitHub releases](https://github.com/pyOpenSci/pyosMeta/releases) page for a
66
77## [ Unreleased]
88
9+ ## [ v1.7.5] - 2025-09-10
10+
11+ * Bug fix: remove an extra newline character that prevents Jekyll from building pages from RSS feed stubs (@banesullivan , #306 )
12+
913## [ v1.7.4] - 2025-09-10
1014
1115* RSS feed parser that will generate Markdown stub files (@banesullivan , #301 )
Original file line number Diff line number Diff line change @@ -16,8 +16,7 @@ def parse_rss_feed(url: str) -> list[dict]:
1616
1717def make_md_stub (index : int , title : str , summary : str , link : str ) -> str :
1818 """Create a Markdown stub for an entry."""
19- return f'''
20- ---
19+ return f'''---
2120title: "{ index } . { title } "
2221excerpt: "
2322 { summary } "
You can’t perform that action at this time.
0 commit comments