diff --git a/recipes/natgeo.recipe b/recipes/natgeo.recipe index e0fa1844ae..91201f5c33 100644 --- a/recipes/natgeo.recipe +++ b/recipes/natgeo.recipe @@ -48,7 +48,7 @@ def parse_body(item): if item.get('type') == 'inline': if c.get('cmsType') == 'listicle': if 'title' in c: - yield '
' + c['quote'] + "" + yield '
' + c['quote'] + '' elif c.get('cmsType') == 'editorsNote': if 'note' in c: - yield '
' + c['note'] + "" + yield '
' + c['note'] + '' else: if c['mrkup'].strip().startswith('<'): yield c['mrkup'] diff --git a/recipes/natgeohis.recipe b/recipes/natgeohis.recipe index f219b5ec5d..c4310c872c 100644 --- a/recipes/natgeohis.recipe +++ b/recipes/natgeohis.recipe @@ -47,7 +47,7 @@ def parse_body(item): if item.get('type') == 'inline': if c.get('cmsType') == 'listicle': if 'title' in c: - yield '
' + c['quote'] + "" + yield '
' + c['quote'] + '' elif c.get('cmsType') == 'editorsNote': if 'note' in c: - yield '
' + c['note'] + "" + yield '
' + c['note'] + '' else: if c['mrkup'].strip().startswith('<'): yield c['mrkup'] diff --git a/recipes/natgeomag.recipe b/recipes/natgeomag.recipe index 926e0429ea..e5fd4ec031 100644 --- a/recipes/natgeomag.recipe +++ b/recipes/natgeomag.recipe @@ -49,7 +49,7 @@ def parse_body(item): if item.get('type') == 'inline': if c.get('cmsType') == 'listicle': if 'title' in c: - yield '
' + c['quote'] + "" + yield '
' + c['quote'] + '' elif c.get('cmsType') == 'editorsNote': if 'note' in c: - yield '
' + c['note'] + "" + yield '
' + c['note'] + '' else: if c['mrkup'].strip().startswith('<'): yield c['mrkup']