Quote:
Originally Posted by iamagloworm
This works pretty well, however, if there is no age-level tag is copies the genre tags. Is there a way to prevent this?
My cave-man workaround is just to exclude any books missing age-level tags...
Attached is my config that mostly works:
Attachment 203771
|
To avoid the pre-selection you need to "get fancy".
This works for me. It depends on the tag always being nn-nn with no other leading or trailing characters. It uses the first one it finds. If it desn't find any then it returns ''
The
General Program Mode template is
Code:
program:
for t in $tags:
if "^\d\d-\d\d$" in t then
return t
fi
rof;
return ''
The S&R is