1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-01-03 05:36:44 +00:00

Updated Definition format (markdown)

garfield69 2023-01-15 20:47:58 +13:00
parent 8a6942ad29
commit 20e6de01f1

@ -1552,6 +1552,22 @@ filters:
# result: Sun, 17 Sep 2017 19:17:24 GMT # result: Sun, 17 Sep 2017 19:17:24 GMT
``` ```
## htmldecode
Converts a *string* that has been HTML-encoded for HTTP transmission in a decoded *string*.
Example:
```yaml
# decode the HTML
selector: td:nth-child(2) a
attribute: href
filters:
# input: Anne+Rice%26%23039%3Bs+Mayfair+Witches+S01E01+1080p+WEB-DL+DD%2B+5.1+H.264-GGEZ
- name: htmldecode
# result: Anne Rice's Mayfair Witches S01E01 1080p WEB-DL DD+ 5.1 H.264-GGEZ
```
## urldecode ## urldecode
Converts a *string* that has been encoded for transmission in a URL into a decoded *string*. Converts a *string* that has been encoded for transmission in a URL into a decoded *string*.