+ x = []
+ for v in wikicode.get_sections(levels=[2], matches='Allgemeines'):
+ i = iter(v.nodes)
+ w = next(i, None)
+ while w is not None:
+ if isinstance(w, Tag) and str(w) == "'''Siehe auch'''":
+ w = next(i, None)
+ break
+ w = next(i, None)
+ while w is not None:
+ if isinstance(w, ExternalLink):
+ link = {'url': w.url}
+ if w.title is not None:
+ link['text'] = w.title
+ x.append(link)
+ elif isinstance(w, (Text, Tag)) and str(w).strip() in ['', '*', ':']:
+ pass
+ else:
+ break
+ w = next(i, None)
+ if len(x) > 0:
+ sledrun_json['see_also'] = x
+
+ sledrun_json['allow_reports'] = True
+