mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-05 07:17:52 +10:00
23 lines
385 B
Python
23 lines
385 B
Python
__package__ = 'abx_plugin_htmltotext'
|
|
__label__ = 'HTML-to-Text'
|
|
|
|
import abx
|
|
|
|
|
|
@abx.hookimpl
|
|
def get_CONFIG():
|
|
from .config import HTMLTOTEXT_CONFIG
|
|
|
|
return {
|
|
'HTMLTOTEXT_CONFIG': HTMLTOTEXT_CONFIG
|
|
}
|
|
|
|
|
|
# @abx.hookimpl
|
|
# def get_EXTRACTORS():
|
|
# from .extractors import FAVICON_EXTRACTOR
|
|
|
|
# return {
|
|
# 'htmltotext': FAVICON_EXTRACTOR,
|
|
# }
|