Source code for regparser.tree.supplement
from regparser.search import find_start
[docs]def find_supplement_start(text, supplement='I'):
"""Find the start of the supplement (e.g. Supplement I)"""
return find_start(text, 'Supplement', supplement)