forked from r-barnes/html2csv
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
As described in source:
...
#Removes nested tables. for handling the sins of 1990's web pages.
#TODO: Add an argument to enable/disable table de-nesting
[t.extract() for t in table.findAll("table")]
#This would grab all TRs regardless of depth without the above line removing nested tables
for row in table.findAll('tr'):
...The table de-nesting hack is currently default behavior. For better backwards compatibility and flexibility it may be better to make it off-by-default and add a flag to enable it.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request