6 lines
88 B
Python
6 lines
88 B
Python
|
"""
|
||
|
Regex patterns
|
||
|
"""
|
||
|
import re
|
||
|
|
||
|
WIKILINK = re.compile(r'\[\[(.*?)\]\]', re.IGNORECASE)
|