From 52bf04e39918d9737c8053a7a670d99b439cd009 Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Wed, 5 Jul 2023 22:10:04 -0500 Subject: [PATCH] fix: Image link --- recipe_box.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe_box.py b/recipe_box.py index 708f932..354c6cf 100755 --- a/recipe_box.py +++ b/recipe_box.py @@ -111,7 +111,7 @@ def process_recipe(config, scraper, url, verbose=False): # Make sure to upload the image file inside /images/recipe with the proper name or edit the following # lines to suit your needs. if filename: - recipe.write('![{filename}]("/images/recipe/{filename}")\n'.format(filename=filename)) + recipe.write('![{filename}](/images/recipe/{filename})\n'.format(filename=filename)) recipe.write('\n') recipe.write('## Information\n') recipe.write('Yields: {yields}\n'.format(yields=scraper.yields()))