onthe literal text on (case sensitive) \w+any word character, repeated at least once
\s?optionally matches any whitespace character
=the literal = (6110 / 758 / 3D16)
\s?+optionally matches any whitespace character
?repeats the group contents below at most once:
"the literal " (3410 / 428 / 2216)
'the literal ' (3910 / 478 / 2716)
Negated Character Class[^"'>]* *matches any number of characters outside the set below:
"the literal " (3410 / 428 / 2216)
'the literal ' (3910 / 478 / 2716)
>the literal > (6210 / 768 / 3E16)
?repeats the group contents below at most once:
"the literal " (3410 / 428 / 2216)
'the literal ' (3910 / 478 / 2716)
>the literal > (6210 / 768 / 3E16)
g modifier: global. Finds all matches instead of stopping after the first