diff --git a/recipes/economist.recipe b/recipes/economist.recipe
index e33389a17a..cff4313a3c 100644
--- a/recipes/economist.recipe
+++ b/recipes/economist.recipe
@@ -206,7 +206,7 @@ class Economist(BasicNewsRecipe):
# open('/t/raw.html', 'wb').write(raw.encode('utf-8'))
root = parse(raw)
if '/interactive/' in url:
- return '
' + root.xpath('//h1')[0].text + '
' \
+ return '' + root.xpath('//h1')[0].text + '
' \
+ 'This article is supposed to be read in a browser' \
+ ''
script = root.xpath('//script[@id="__NEXT_DATA__"]')
diff --git a/recipes/economist_free.recipe b/recipes/economist_free.recipe
index e33389a17a..cff4313a3c 100644
--- a/recipes/economist_free.recipe
+++ b/recipes/economist_free.recipe
@@ -206,7 +206,7 @@ class Economist(BasicNewsRecipe):
# open('/t/raw.html', 'wb').write(raw.encode('utf-8'))
root = parse(raw)
if '/interactive/' in url:
- return '' + root.xpath('//h1')[0].text + '
' \
+ return '' + root.xpath('//h1')[0].text + '
' \
+ 'This article is supposed to be read in a browser' \
+ ''
script = root.xpath('//script[@id="__NEXT_DATA__"]')
diff --git a/recipes/economist_world_ahead.recipe b/recipes/economist_world_ahead.recipe
index b2d2e5ae97..3e7ce68cdb 100644
--- a/recipes/economist_world_ahead.recipe
+++ b/recipes/economist_world_ahead.recipe
@@ -202,7 +202,7 @@ class Economist(BasicNewsRecipe):
# open('/t/raw.html', 'wb').write(raw.encode('utf-8'))
root = parse(raw)
if '/interactive/' in url:
- return '' + root.xpath('//h1')[0].text + '
' \
+ return '' + root.xpath('//h1')[0].text + '
' \
+ 'This article is supposed to be read in a browser' \
+ ''
script = root.xpath('//script[@id="__NEXT_DATA__"]')
diff --git a/recipes/financial_times.recipe b/recipes/financial_times.recipe
index 11a32c9c38..d99d52afe9 100644
--- a/recipes/financial_times.recipe
+++ b/recipes/financial_times.recipe
@@ -40,7 +40,7 @@ class ft(BasicNewsRecipe):
remove_tags = [
dict(name=['source', 'svg', 'button']),
- dict(name='aside', attrs={'class':'n-content-recommended--single-story'}),
+ dict(name='aside', attrs={'class':'n-content-recommended--single-story flourish-disclaimer'}),
dict(attrs={'data-layout-name':'card'}),
classes('in-article-advert')
]
@@ -81,6 +81,7 @@ class ft(BasicNewsRecipe):
open = open_novisit
feeds = [
+ ('FirstFT', 'https://www.ft.com/firstft?format=rss'),
('Opinion', 'https://www.ft.com/opinion?format=rss'),
('World', 'https://www.ft.com/world?format=rss'),
('US', 'https://www.ft.com/us?format=rss'),
@@ -90,6 +91,7 @@ class ft(BasicNewsRecipe):
('Climate', 'https://www.ft.com/climate-capital?format=rss'),
('Life & Arts', 'https://www.ft.com/life-arts?format=rss'),
('How to spend it', 'https://www.ft.com/htsi?format=rss'),
+ ('Others', 'https://www.ft.com/rss/home/uk')
]
def preprocess_raw_html(self, raw, *a):