Quote:
Originally Posted by theducks
I can't answer for a New Kindle (have a K4nt  )
PLUGBOARD and Collection was my solution
Code:
{series_index: >5.2f|| - }{title}
BTW use a leading space when formatting the index for some of the issue as space sorts before 0 - 9, elims the leading 0
Personally, I just leave the leading and trailing 0's, it makes the list look more even
|
How do you remove all the trailing 0's and still be able to use decimals like:
1
2.5
and not
2.50
Right now I've managed to remove the leading zero and have only 1 trailing 0.
Code:
{series}{series_index:2.1f| #| - }{title}
Series #1.0
Series #1.5
I guess this is best option under the circumstances. Would be great if someone can get it to:
Series #1
Series #1.5
Series #2
Thanks for replying!