Files
ArchiveBox/archivebox/plugins/mercury/config.json
2025-12-24 20:10:38 -08:00

31 lines
774 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"SAVE_MERCURY": {
"type": "boolean",
"default": true,
"description": "Enable Mercury text extraction"
},
"MERCURY_BINARY": {
"type": "string",
"default": "postlight-parser",
"x-aliases": ["POSTLIGHT_PARSER_BINARY"],
"description": "Path to Mercury/Postlight parser binary"
},
"NODE_BINARY": {
"type": "string",
"default": "node",
"description": "Path to Node.js binary"
},
"MERCURY_TIMEOUT": {
"type": "integer",
"default": 30,
"minimum": 5,
"x-fallback": "TIMEOUT",
"description": "Timeout for Mercury in seconds"
}
}
}