[naver] unescape post 'title' and 'description'

This commit is contained in:
Mike Fährmann
2024-03-06 00:46:19 +01:00
parent a71cdab53e
commit f296067797
2 changed files with 6 additions and 4 deletions

View File

@@ -47,8 +47,10 @@ class NaverPostExtractor(NaverBase, GalleryExtractor):
extr = text.extract_from(page)
data = {
"post": {
"title" : extr('"og:title" content="', '"'),
"description": extr('"og:description" content="', '"'),
"title" : text.unescape(extr(
'"og:title" content="', '"')),
"description": text.unescape(extr(
'"og:description" content="', '"')).replace(" ", " "),
"num" : text.parse_int(self.post_id),
},
"blog": {