9 lines
135 B
Python
9 lines
135 B
Python
|
import re
|
||
|
|
||
|
WIKILINK = re.compile(r'\[\[(.*?)\]\]', re.IGNORECASE)
|
||
|
"""
|
||
|
Basic structure of wikilink, used to detect presence
|
||
|
"""
|
||
|
|
||
|
class
|