implemented table parsing correctly

instead of manually walking down the dom tree
in a table, we now rely on the main descent loop
and just implement conversion for rows and cells
correctly. this enables the use of html inside a
table cell.
This commit is contained in:
AlexVonB
2021-05-17 14:00:00 +02:00
parent e6da15c173
commit ea81407b87
3 changed files with 64 additions and 35 deletions

View File

@@ -1,2 +1,2 @@
[flake8]
ignore = E501
ignore = E501 W503