wiki-postbot/wiki_postbot/patterns/wikilink.py

9 lines
135 B
Python

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