mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
[naver] unescape post 'title' and 'description'
This commit is contained in:
parent
a71cdab53e
commit
f296067797
@ -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": {
|
||||
|
@ -41,9 +41,9 @@ __tests__ = (
|
||||
},
|
||||
"post": {
|
||||
"date" : "dt:2013-03-05 17:48:00",
|
||||
"description": " ◈     PROMOTER :핑수 ˚ 아담 EDITOR:핑수   넵:이크:핑수...",
|
||||
"description": " ◈ PROMOTER :핑수 ˚ 아담 EDITOR:핑수 넵:이크:핑수...",
|
||||
"num" : 70161391809,
|
||||
"title" : "[공유] { 합작}  OH, MY GOD! ~ 아 또 무슨 종말을 한다 그래~"
|
||||
"title" : "[공유] { 합작} OH, MY GOD! ~ 아 또 무슨 종말을 한다 그래~",
|
||||
},
|
||||
"count" : 2,
|
||||
"num" : range(1, 2),
|
||||
|
Loading…
Reference in New Issue
Block a user