wikicode_common = next(iter(wikicode.get_sections(levels=[2], matches='Allgemeines')), None)
wikitext_common = str(wikicode_common)
lines = wikitext_common.split('\n')
- lines = dropwhile(lambda line: "'''Siehe auch'''" not in line, lines)
+ lines = dropwhile(lambda line: "'''Siehe auch'''" not in line and '* Siehe auch:' not in line, lines)
lines = itertools.islice(lines, 1, None) # omit "Siehe auch" line
lines = takewhile(lambda line: line.startswith('**'), lines)
for line in lines: