You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mercury-parser/src/extractors/custom/www.investmentexecutive.com/index.js

30 lines
523 B
JavaScript

export const WwwInvestmentexecutiveComExtractor = {
domain: 'www.investmentexecutive.com',
title: {
selectors: ['h1'],
},
author: {
selectors: ['div[itemprop="author"]'],
},
date_published: {
selectors: [['meta[itemprop="datePublished"]', 'value']],
},
dek: {
selectors: [['meta[name="og:description"]', 'value']],
},
lead_image_url: {
selectors: [['meta[name="og:image"]', 'value']],
},
content: {
selectors: ['section.article-body'],
clean: ['.hidden'],
},
};