Add {word} as an alias for {id}
This commit is contained in:
parent
0d8d109eaf
commit
50edc4097a
@ -337,6 +337,7 @@ mostly ignore spaces, underscores, and dashes.
|
||||
- `start` - the very start of the text
|
||||
- `uri` - a URI
|
||||
- `url` - a URL (URI that specifically starts with `http://`, `https://`, `ws://`, `wss://`, or `ftp://`)
|
||||
- `word` - A unicode identifier (same as `id`)
|
||||
|
||||
For non-alphabetic characters, any single character is treated as matching
|
||||
exactly that character. For example, `{1{}` matches exactly one `{`
|
||||
|
@ -654,6 +654,11 @@ static pat_t parse_next_pat(TextIter_t *state, int64_t *index)
|
||||
return PAT(PAT_FUNCTION, .fn=match_url);
|
||||
}
|
||||
break;
|
||||
case 'w':
|
||||
if (strcasecmp(prop_name, "word") == 0) {
|
||||
return PAT(PAT_FUNCTION, .fn=match_id);
|
||||
}
|
||||
break;
|
||||
default: break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user