Currently I'm using two different templates when I Save Books to Disk. The only difference between the two is that I use {series_index:0>2s||. } if the series has all whole numbers for the index # and {series_index:0>4.1f||. } if the series has partial numbers for the index #.
What I would like is for an automatic way to do this without having to manual adjust the template each time.
Examples:
If the series goes
SomeSeries 1
SomeSeries 2
SomeSeries 3
I want the index to be:
01.
02.
03.
However, if the series goes
SomeSeries 1
SomeSeries 1.5
SomeSeries 2
SomeSeries 3
I want the index to be:
01.0.
01.5.
02.0
03.0.
Is this possible?