blob: 4526117789e7b842e0af1cc97e5bb6357305c832 [file] [log] [blame]
Akronc8406362021-11-09 20:17:50 +01001! XML rule
2define XMLns [AsciiLetter [AsciiLetter|Digit|%-]* (%: AsciiLetter [AsciiLetter|Digit|%-]*)] .o. Caseinsensitive;
Akrond47c67e2022-04-10 11:02:59 +02003
4define XMLcomment [ %< %! %- %- | %- %- %> ];
5define XMLpi [ %< %? AsciiLetter [AsciiLetter | Digit | %- ]* | %? %> ];
6define CDATA [ %< %! %[ {CDATA} %[ | %] %] %> ];
7
8define XML [[
Akronc8406362021-11-09 20:17:50 +01009 "<" [
10 [
11 XMLns
12 [WS+ XMLns WS*
13 (%= WS*
14 [[%" [? - %" - %>]+ %"] | [%' [? - %' - %>]+ %']]
15 )
16 ]*
17 (WS* "/")
18 ]
19 |
20 [
21 "/" XMLns
22 ]
23 ] WS* ">"
Akrond47c67e2022-04-10 11:02:59 +020024].u | XMLcomment | XMLpi | CDATA ];