Quote:
Originally Posted by DuckieTigger
Question about your filter - what do the || do ? Does that mean it is only adding the space and the - if series and the # exist?
|
Yes. The syntax:
{series:|| }{series_index:0>2s|| - }{title}
Means:
1. Output the series name.
2. If the series name is empty, output nothing (there's nothing after the first "|"), otherwise output a space (the space after the second "|").
3. Output the number within the series, padding it to 2 characters with a leading zero, if necessary (ie a series index of "3" will be displayed as "03").
4. If the series number is blank, output nothing, otherwise output " - ".
5. Output the original title.