Quote:
Originally Posted by ACGAuthor
5) Another interesting way to shorten series titles would be to get rid of extraneous words at the end as well as at the beginning. A (partial, I'm sure) list I came up with would be: Series, Stories, Novels, Books, Trilogy, etc.
For example (for you, eschwartz) if we added "Files" onto that list, the series "The Dresden Files" would be shortened to "Dresden" instead of "DF". So if the series name is "The Home Series" (as in, that is the metadata that downloads, complete with "Series" at the end) it would be shortened to "Home" rather than "HS." "The Impulse Trilogy" would be "Impulse" instead of "IT".
|
I decided we can do this after all.
We will edit the #stripped_series field, which is already removing the leading (A|The|An) and the full scan will look like this:
Code:
(^(A|The|An)\s+|\s+(Files|Series|Trilogy)$)
So instead of:
Code:
Name: #stripped_series. Template: {series:re(^(A|The|An)\s+,)||}
We will use:
Code:
Name: #stripped_series. Template: {series:re((^(A|The|An)\s+|\s+(Files|Series|Trilogy)$),)||}