Open zhutuo opened 3 years ago
函数preprocess4content_extractor中的 for child in children(element): 只是遍历了子,而不是遍历所有节点,是否应该改为 for descendant in element.iterdescendants():
for child in children(element):
for descendant in element.iterdescendants():
函数preprocess4content_extractor中的
for child in children(element):
只是遍历了子,而不是遍历所有节点,是否应该改为for descendant in element.iterdescendants():