Add additional shortcuts for partial_link_text selectors

This commit is contained in:
Michael Mintz 2021-08-23 22:59:52 -04:00
parent 85bdad4521
commit db91e6c2fa
1 changed files with 3 additions and 0 deletions

View File

@ -56,6 +56,9 @@ def is_partial_link_text_selector(selector):
selector.startswith("partial_link=")
or selector.startswith("partial_link_text=")
or selector.startswith("partial_text=")
or selector.startswith("p_link=")
or selector.startswith("p_link_text=")
or selector.startswith("p_text=")
):
return True
return False