diff --git a/resources/recipes/danas.recipe b/resources/recipes/danas.recipe index 38957b3d63..2849723c04 100644 --- a/resources/recipes/danas.recipe +++ b/resources/recipes/danas.recipe @@ -59,6 +59,9 @@ class Danas(BasicNewsRecipe): ,(re.compile(u'\u201d'), lambda match: '”') # right double quotation mark ,(re.compile(u'\u201e'), lambda match: '“') # double low-9 quotation mark ,(re.compile(u'\u201f'), lambda match: '”') # double high-reversed-9 quotation mark + ,(re.compile(u'\u00f4'), lambda match: '“') # latin small letter o with circumflex + ,(re.compile(u'\u00f6'), lambda match: '”') # latin small letter o with dieaeresis + ,(re.compile(u'\u00e1'), lambda match: ' ' ) # latin small letter a with acute ] keep_only_tags = [dict(name='div', attrs={'id':'left'})]