Recipe name for source url text

Closes #3
This commit is contained in:
Marcel Kapfer 2020-07-06 20:01:18 +02:00
parent 80773164aa
commit 01f8bdd8d3
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ class Recipe():
code.append(writer.table_cell(self.servings, f"{style_info_contentrow} {style_info_content}"))
code.append(writer.table_cell(self.time, style_info_content))
code.append(writer.table_cell("🟢" * self.rating + "" * (5 - self.rating), style_info_content))
code.append(writer.table_cell(writer.link("Quelle", self.url), style_info_content))
code.append(writer.table_cell(writer.link(self.name, self.url), style_info_content))
code.append(writer.table_row_end())
code.append(writer.newline())
code.append(writer.linebreak())