Squashed from chore/license-relicense. Full message preserved in the original branch commitbb77eb5. See ADR-0002 for the decision rationale. Refs: ADR-0002, commitbb77eb5
43 lines
No EOL
1,021 B
JSON
43 lines
No EOL
1,021 B
JSON
{
|
|
"name": "The Economist Article",
|
|
"description": "Extract article content from The Economist",
|
|
"site": "economist.com",
|
|
"category": "news",
|
|
"icon": "\ud83d\udcf0",
|
|
"schema": {
|
|
"name": "economist_article",
|
|
"base_selector": "article, main",
|
|
"fields": [
|
|
{
|
|
"name": "title",
|
|
"selector": "h1",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "published_date",
|
|
"selector": "time",
|
|
"type": "attribute",
|
|
"attribute": "datetime"
|
|
},
|
|
{
|
|
"name": "content",
|
|
"selector": "[class*='article-body'], [class*='content']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "image_url",
|
|
"selector": "figure img",
|
|
"type": "attribute",
|
|
"attribute": "src"
|
|
},
|
|
{
|
|
"name": "rubric",
|
|
"selector": "[class*='rubric'], h2",
|
|
"type": "text"
|
|
}
|
|
]
|
|
},
|
|
"url_pattern": "*://www.economist.com/*",
|
|
"_license": "MIT",
|
|
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
|
|
} |