Mirror of
forum.nim-lang.org
index
11783 :: Go through siblings in HTML
[2024-06-17T22:10:43+02:00]
View Orginal
EnteryName
(orginal)
[2024-06-17T22:10:43+02:00]
view original
I'm using the standard xmltree and htmlparser, and I'm trying to iterate over each children of a parent, however I am not able to find a suitable method to do so.
Araq
(orginal)
[2024-06-17T22:44:52+02:00]
view original
Remember the parent during traversal, it's not stored in the tree as it would be redundant.
EnteryName
(orginal)
[2024-06-18T01:01:41+02:00]
view original
I did something similar, saving the element in a variable while iterating over all elements using the items iterator.