View Single Post
Old 11-19-2012, 04:54 AM   #8
chaley
Grand Sorcerer
chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.
 
Posts: 11,734
Karma: 6690881
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
Quote:
Originally Posted by paw3pals View Post
There are no other templates.

Does anyone know HOW to add "{series} {series_index:| - |} {title}" to the below expression? If there is no series then I do not want the dash to appear before the title.

{series} {series_index:0>3s} - {title}

thanx.
The template is
Code:
{series} {series_index:0>3s| - |} {title}
However, even though this template matches your examples, it does not match your words. You say you want the dash before the title, and the above template puts the dash between the series and series index.

If you want the dash before the title, then the template is
Code:
{series} {series_index:0>3s|| - } {title}
If you want the series index enclosed in brackets, then the template is
Code:
{series} {series_index:0>3s|[|] - } {title}
chaley is offline   Reply With Quote