fix: parse_html node have a bug

This commit is contained in:
Marco Vinciguerra 2024-07-22 16:01:27 +02:00 committed by GitHub
parent da451e5f16
commit 71f894eee3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -41,7 +41,7 @@ class ParseNode(BaseNode):
False if node_config is None else node_config.get("verbose", False)
)
self.parse_html = (
True if node_config is None else node_config.get("parse_html", True)
True if node_config is None else node_config.get("parse_html", False)
)
def execute(self, state: dict) -> dict:
@ -94,4 +94,4 @@ class ParseNode(BaseNode):
state.update({self.output[0]: chunks})
return state
return state