mirror of
https://github.com/Jackett/Jackett
synced 2025-03-09 21:54:51 +00:00
btarg: shift prefix tags to end of title for *arr
This commit is contained in:
parent
996f6db141
commit
560e5b33fb
1 changed files with 12 additions and 0 deletions
|
@ -139,6 +139,12 @@ search:
|
||||||
args: ["(?i)Temporada (\\d{1,3})\\s*y\\s*(\\d{1,3})", "S$1-$2"]
|
args: ["(?i)Temporada (\\d{1,3})\\s*y\\s*(\\d{1,3})", "S$1-$2"]
|
||||||
- name: re_replace
|
- name: re_replace
|
||||||
args: ["(?i)Temporada (\\d{1,3})", "S$1"]
|
args: ["(?i)Temporada (\\d{1,3})", "S$1"]
|
||||||
|
# move ARG tag to end
|
||||||
|
- name: re_replace
|
||||||
|
args: ["^(\\[ARG\\]) (.+?)$", "$2 $1"]
|
||||||
|
# move quality tags to end
|
||||||
|
- name: re_replace
|
||||||
|
args: ["^(\\[.+?\\]) (.+?)$", "$2 $1"]
|
||||||
title:
|
title:
|
||||||
selector: a[title][href^="details.php?id="]
|
selector: a[title][href^="details.php?id="]
|
||||||
attribute: title
|
attribute: title
|
||||||
|
@ -173,6 +179,12 @@ search:
|
||||||
args: ["(?i)Temporada (\\d{1,3})\\s*y\\s*(\\d{1,3})", "S$1-$2"]
|
args: ["(?i)Temporada (\\d{1,3})\\s*y\\s*(\\d{1,3})", "S$1-$2"]
|
||||||
- name: re_replace
|
- name: re_replace
|
||||||
args: ["(?i)Temporada (\\d{1,3})", "S$1"]
|
args: ["(?i)Temporada (\\d{1,3})", "S$1"]
|
||||||
|
# move ARG tag to end
|
||||||
|
- name: re_replace
|
||||||
|
args: ["^(\\[ARG\\]) (.+?)$", "$2 $1"]
|
||||||
|
# move quality tags to end
|
||||||
|
- name: re_replace
|
||||||
|
args: ["^(\\[.+?\\]) (.+?)$", "$2 $1"]
|
||||||
details:
|
details:
|
||||||
selector: a[href^="details.php?id="]
|
selector: a[href^="details.php?id="]
|
||||||
attribute: href
|
attribute: href
|
||||||
|
|
Loading…
Add table
Reference in a new issue