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