&anchor(アンカー名){リンク用テキスト}
&link_anchor(anchor_http,pageid=36){page36のanchor_httpへのリンク}
&nowiki(){}
#highlight(javascript){code}
import re
re.search(pattern, target) re.match(pattern, target)
for m in re.search(pattern, target): # m には match オブジェクトが返っている print(m.group(0))
re.match("(AB)+?", "ABABABABAAB")