blob: 06e247d1c570bf657de5882bc0f8cdb7bb36ea55 [file] [log] [blame]
Akronc8406362021-11-09 20:17:50 +01001! XML rule
2define XMLns [AsciiLetter [AsciiLetter|Digit|%-]* (%: AsciiLetter [AsciiLetter|Digit|%-]*)] .o. Caseinsensitive;
Akron61948ef2022-03-30 14:07:57 +02003define XML [
Akronc8406362021-11-09 20:17:50 +01004 "<" [
5 [
6 XMLns
7 [WS+ XMLns WS*
8 (%= WS*
9 [[%" [? - %" - %>]+ %"] | [%' [? - %' - %>]+ %']]
10 )
11 ]*
12 (WS* "/")
13 ]
14 |
15 [
16 "/" XMLns
17 ]
18 ] WS* ">"
19].u;