Quote:
Originally Posted by Purple Lady
There is a problem with the save template when connecting as a wireless device. I have a few anthologies and I have all the authors in the authors column. I tried the save template in both the save to disk and when connected by usb in Calibre and it worked fine. When connecting wirelessly, CC is still using all authors instead of only the first - see screen print. Here's the save template I am using:
{#genre}/{author_sort:list_item(0,&)}/{title} - {author:list_item(0,&)}
|
list_sort returns a case-insensitive sorted complete list. I think what you want is
Code:
{author_sort:sublist(0,1,&)}
using the
sublist function.