config.json 531 B

1234567891011121314151617181920
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "type": "object",
  4. "additionalProperties": false,
  5. "properties": {
  6. "HTMLTOTEXT_ENABLED": {
  7. "type": "boolean",
  8. "default": true,
  9. "x-aliases": ["SAVE_HTMLTOTEXT", "USE_HTMLTOTEXT"],
  10. "description": "Enable HTML to text conversion"
  11. },
  12. "HTMLTOTEXT_TIMEOUT": {
  13. "type": "integer",
  14. "default": 30,
  15. "minimum": 5,
  16. "x-fallback": "TIMEOUT",
  17. "description": "Timeout for HTML to text conversion in seconds"
  18. }
  19. }
  20. }