Quote:
Originally Posted by chaley
You can't use template syntax inside a GPM template.
This should do it. The spacing might be wrong.
Code:
program:
if
'cbz' in approximate_formats()
then
strcat('books/', $author_sort, '/', $series, '/', $title)
else
strcat('books/', $author_sort, '/', $series, '/', $series, finish_formatting($series_index, '0>2s', ' - ', ' - '), $title)
fi
|
Hey, thank you so much! That worked like a charm! And now that I have an idea of how it works, if I need to do tweaks in the future, I can!