static S wikipediaDeformat(S s) { ret regexpReplace_direct(regexpReplace(s, "\\[\\[(.*?)\\]\\]", func(Matcher m) -> S { S s = m.group(1); ret substring(s, indexOf(s, '|')+1); }), "'''?", "\""); }