Compare commits

..

No commits in common. "a243c30446dd60c8ef4cb2d85fa9b50b250af609" and "dc1f2276b0f8681a487540fc789d3ae79b12f27b" have entirely different histories.

11
main.py
View file

@ -21,17 +21,6 @@ def article_list():
return articles_base_html.format(elements="\n".join(elements))
def article_list_working():
article_paths = (pathlib.Path.cwd() / "feed_articles").glob("[0-9]*")
article_paths_sorted = sorted(article_paths, key=lambda x: x.name, reverse=True)
metadatas = [(feed_generator.convert_markdown_to_html(path)[1], path.parts[-1]) for path in article_paths_sorted]
print(metadatas)
elements = ['<li><a href="articles.html?{guid}">{title} ({guid})</a></li>'.format(title=metadata[0]["title"][0], guid=metadata[1]) for metadata in metadatas]
return articles_base_html.format(elements="\n".join(elements))
def article(path):
if not "?" in path:
return article_list()