mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-12 22:25:44 -04:00
11 lines
218 B
Python
11 lines
218 B
Python
__package__ = 'plugins_extractor.htmltotext'
|
|
|
|
|
|
from abx.archivebox.base_configset import BaseConfigSet
|
|
|
|
|
|
class HtmltotextConfig(BaseConfigSet):
|
|
SAVE_HTMLTOTEXT: bool = True
|
|
|
|
|
|
HTMLTOTEXT_CONFIG = HtmltotextConfig()
|