Non-Capturing Group(?:[^>"']|"[^"]*"|'[^']*')*? *?repeats the group contents below any number of times:
Negated Character Class[^>"'] >the literal > (6210 / 768 / 3E16)
"the literal " (3410 / 428 / 2216)
'the literal ' (3910 / 478 / 2716)
"the literal " (3410 / 428 / 2216)
Negated Character Class[^"]* *matches any number of characters outside the set below:
"the literal " (3410 / 428 / 2216)
"the literal " (3410 / 428 / 2216)
'the literal ' (3910 / 478 / 2716)
Negated Character Class[^']* *matches any number of characters outside the set below:
'the literal ' (3910 / 478 / 2716)
'the literal ' (3910 / 478 / 2716)
\sany whitespace character
idthe literal text id (case insensitive) \s*any whitespace character, repeated any number of times
=the literal = (6110 / 758 / 3D16)
\s*any whitespace character, repeated any number of times
Non-Capturing Group(?:(['"])\s*(post-\d+).*?\1) 'the literal ' (3910 / 478 / 2716)
"the literal " (3410 / 428 / 2216)
\s*any whitespace character, repeated any number of times
post-the literal text post- (case insensitive) \d+a digit, repeated at least once
.*?any character, repeated any number of times
\1the text saved by group 1