diff --git a/scrape.py b/scrape.py index b87363e..980683b 100644 --- a/scrape.py +++ b/scrape.py @@ -74,9 +74,9 @@ def get_body(post): return body def get_formatted_body(post): - formatted_body = '' - formatted_body += '
'+post['title']+'
' - formatted_body += '
' + formatted_body = '
' + formatted_body += post['title'] + formatted_body += '
' if post['description']: formatted_body += '

'+post['description']+'

'