fix: don't expect title field for feeds #21

Merged
knoflook merged 1 commits from knoflook/lumbunglib:feed-title into master 2022-01-28 12:09:42 +00:00
1 changed files with 6 additions and 1 deletions

View File

@ -60,6 +60,11 @@ def create_frontmatter(entry):
else: else:
author = "" author = ""
if "title" in entry:
title = entry.title
else:
title = ""
tags = [] tags = []
if "tags" in entry: if "tags" in entry:
# TODO finish categories # TODO finish categories
@ -67,7 +72,7 @@ def create_frontmatter(entry):
tags.append(t["term"]) tags.append(t["term"])
frontmatter = { frontmatter = {
"title": entry.title, "title": title,
"date": published.format(), "date": published.format(),
"summary": "", "summary": "",
"author": author, "author": author,