diff --git a/lib/routes/ft/myft.js b/lib/routes/ft/myft.js index b6d3c3ba5..8b82025a1 100644 --- a/lib/routes/ft/myft.js +++ b/lib/routes/ft/myft.js @@ -4,7 +4,8 @@ const cheerio = require('cheerio'); module.exports = async (ctx) => { const ProcessFeed = (content) => { - content.find('div.o-share, aside').remove(); + // clean up the article + content.find('div.o-share, aside, div.o-ads').remove(); return content.html(); };