Fix if*/elif* highlighting (#5)

A regular expression with alternation will take the first match
that succeeds, so if 'if' comes before 'ifarch', 'ifos', etc. then
the longer matches will never even be checked.
This commit is contained in:
Frank Dana 2023-03-01 17:39:58 -05:00 committed by GitHub
parent 78f00fcef1
commit f04b8a8058
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ function hljsDefineRpmSpecfile(hljs) {
},
{
className: "link",
begin: /(%)(if|ifarch|ifnarch|ifos|ifnos|elif|elifarch|elifos|else|endif)/,
begin: /(%)(ifarch|ifnarch|ifos|ifnos|if|elifarch|elifos|elif|else|endif)/,
},
{
className: "link",