We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da451e5 commit 71f894eCopy full SHA for 71f894e
scrapegraphai/nodes/parse_node.py
@@ -41,7 +41,7 @@ def __init__(
41
False if node_config is None else node_config.get("verbose", False)
42
)
43
self.parse_html = (
44
- 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)
45
46
47
def execute(self, state: dict) -> dict:
@@ -94,4 +94,4 @@ def execute(self, state: dict) -> dict:
94
95
state.update({self.output[0]: chunks})
96
97
- return state
+ return state
0 commit comments