Updated TVDb Builders (markdown)

master
meisnate12 3 years ago
parent cde43b8b26
commit 7d7e14cc32

@ -2,8 +2,9 @@ You can build different collections using the features of [TheTVDb.com](https://
| Name | Attribute | Description | Works with Movies | Works with Shows |
| :-- | :-- | :-- | :--: | :--: |
| [TVDb List](#tvdb-list) | `tvdb_list` | Gets every show in a [TVDb List](https://www.thetvdb.com/lists) or [TVDb Userlist](https://www.thetvdb.com/lists/custom) | :x: | :heavy_check_mark: |
| [TVDb Show](#tvdb-show) | `tvdb_show` | Gets the show specified | :x: | :heavy_check_mark: |
| [TVDb List](#tvdb-list) | `tvdb_list` | Gets every show in a [TVDb List](https://www.thetvdb.com/lists) or [TVDb Userlist](https://www.thetvdb.com/lists/custom) | :heavy_check_mark: | :heavy_check_mark: |
| [TVDb Show](#tvdb-show) | `tvdb_show` | Gets the series specified | :x: | :heavy_check_mark: |
| [TVDb Movie](#tvdb-movie) | `tvdb_movie` | Gets the movie specified | :heavy_check_mark: | :x: |
## TVDb List
Gets every show in a [TVDb List](https://www.thetvdb.com/lists) or [TVDb Userlist](https://www.thetvdb.com/lists/custom)
@ -24,7 +25,7 @@ collections:
## TVDb Show
Gets the show specified
The expected input is a TVDb Show ID or TVDb Show URL. Multiple values are supported as either a list or a comma separated string.
The expected input is a TVDb Series ID or TVDb Series URL. Multiple values are supported as either a list or a comma separated string.
```yaml
collections:
@ -37,4 +38,23 @@ collections:
tvdb_show:
- https://www.thetvdb.com/series/star-wars-the-clone-wars
- https://www.thetvdb.com/series/star-wars-rebels
```
## TVDb Movie
Gets the movie specified
The expected input is a TVDb Movie ID or TVDb Movie URL. Multiple values are supported as either a list or a comma separated string.
```yaml
collections:
The Lord of the Rings:
tvdb_show: 107, 157, 74
```
```yaml
collections:
The Lord of the Rings:
tvdb_show:
- https://www.thetvdb.com/movies/the-lord-of-the-rings-the-fellowship-of-the-ring
- https://www.thetvdb.com/movies/the-lord-of-the-rings-the-two-towers
- https://www.thetvdb.com/movies/the-lord-of-the-rings-the-return-of-the-king
```
Loading…
Cancel
Save