PrefixSearch: Avoid notice when no subpage exists
[mediawiki.git] / resources / src / mediawiki / mediawiki.jqueryMsg.peg
blob716c326190f5fbdefd16f2946352bf52b5a3d550
1 /* PEG grammar for a subset of wikitext, useful in the MediaWiki frontend */
3 start
4   = e:expression* { return e.length > 1 ? [ "CONCAT" ].concat(e) : e[0]; }
6 expression
7   = template
8   / link
9   / extlink
10   / replacement
11   / literal
13 paramExpression
14   = template
15   / link
16   / extlink
17   / replacement
18   / literalWithoutBar
20 template
21   = "{{" t:templateContents "}}" { return t; }
23 templateContents
24   = twr:templateWithReplacement p:templateParam* { return twr.concat(p) }
25   / twr:templateWithOutReplacement p:templateParam* { return twr.concat(p) }
26   / twr:templateWithOutFirstParameter p:templateParam* { return twr.concat(p) }
27   / t:templateName p:templateParam* { return p.length ? [ t, p ] : [ t ] }
29 templateWithReplacement
30   = t:templateName ":" r:replacement { return [ t, r ] }
32 templateWithOutReplacement
33   = t:templateName ":" p:paramExpression { return [ t, p ] }
35 templateWithOutFirstParameter
36   = t:templateName ":" { return [ t, "" ] }
38 templateParam
39   = "|" e:paramExpression* { return e.length > 1 ? [ "CONCAT" ].concat(e) : e[0]; }
41 templateName
42   = tn:[A-Za-z_]+ { return tn.join('').toUpperCase() }
44 /* TODO: Update to reflect separate piped and unpiped handling */
45 link
46   = "[[" w:expression "]]" { return [ 'WLINK', w ]; }
48 extlink
49   = "[" url:url whitespace text:expression "]" { return [ 'LINK', url, text ] }
51 url
52   = url:[^ ]+ { return url.join(''); }
54 whitespace
55   = [ ]+
57 replacement
58   = '$' digits:digits { return [ 'REPLACE', parseInt( digits, 10 ) - 1 ] }
60 digits
61   = [0-9]+
63 literal
64   = lit:escapedOrRegularLiteral+ { return lit.join(''); }
66 literalWithoutBar
67   = lit:escapedOrLiteralWithoutBar+ { return lit.join(''); }
69 escapedOrRegularLiteral
70   = escapedLiteral
71   / regularLiteral
73 escapedOrLiteralWithoutBar
74   = escapedLiteral
75   / regularLiteralWithoutBar
77 escapedLiteral
78   = "\\" escaped:. { return escaped; }
80 regularLiteral
81   = [^{}\[\]$\\]
83 regularLiteralWithoutBar
84   = [^{}\[\]$\\|]