Skip to content

Commit 947ebd2

Browse files
committed
fix: parse node
1 parent f2bb22d commit 947ebd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scrapegraphai/nodes/parse_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def execute(self, state: dict) -> dict:
6565
docs_transformed = input_data[0]
6666

6767
if self.parse_html:
68-
docs_transformed = Html2TextTransformer().transform_documents(input_data[0])
68+
docs_transformed = Html2TextTransformer(ignore_links=False).transform_documents(input_data[0])
6969
docs_transformed = docs_transformed[0]
7070

7171
chunks = chunk(text=docs_transformed.page_content,

0 commit comments

Comments
 (0)