
... me again!
finally got it working. Here the Regex code, that does the trick:
Code:
preprocess_regexps = [(re.compile(r'(<span class="hcf-location-mark">[^<]*)(</span>)', re.DOTALL|re.IGNORECASE), lambda match: match.group(1) + '. ' + match.group(2))]
... just to have this documented here.
Hegi.