Test case: wiki = """ intro === title1 === thing === title2 === more thing """ p = wtp.parse(wiki) section = p.sections[1] del section.title section.plain_text()
Test case:
wiki = """
intro
=== title1 ===
thing
=== title2 ===
more thing
"""
p = wtp.parse(wiki)
section = p.sections[1]
del section.title
section.plain_text()