Files
ArchiveBox/archivebox/plugins/readability/config.json
Nick Sweeting f0aa19fa7d wip
2025-12-28 17:51:54 -08:00

31 lines
811 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"READABILITY_ENABLED": {
"type": "boolean",
"default": true,
"x-aliases": ["SAVE_READABILITY", "USE_READABILITY"],
"description": "Enable Readability text extraction"
},
"READABILITY_BINARY": {
"type": "string",
"default": "readability-extractor",
"description": "Path to readability-extractor binary"
},
"NODE_BINARY": {
"type": "string",
"default": "node",
"description": "Path to Node.js binary"
},
"READABILITY_TIMEOUT": {
"type": "integer",
"default": 30,
"minimum": 5,
"x-fallback": "TIMEOUT",
"description": "Timeout for Readability in seconds"
}
}
}