diff --git a/gallery_dl/extractor/newgrounds.py b/gallery_dl/extractor/newgrounds.py index 8ffa14ba..648f7df8 100644 --- a/gallery_dl/extractor/newgrounds.py +++ b/gallery_dl/extractor/newgrounds.py @@ -190,8 +190,8 @@ class NewgroundsExtractor(Extractor): extr = text.extract_from(page) data = extract_data(extr, post_url) - data["_comment"] = extr( - 'id="author_comments"', '').partition(">")[2] + data["comment_html"] = data["_comment"] = extr( + 'id="author_comments"', '').partition(">")[2].strip() data["comment"] = text.unescape(text.remove_html( data["_comment"] .replace("


", "\n\n").replace("
", "\n"), "", ""))