To work around another FanFicFare issue, I want to make a template that removes either 'In-Progress' or 'Complete' from
tags if
#fanficstatus is 'Anthology.'
Code:
program:
status = $#fanficstatus;
tags = $tags;
if
status == 'Anthology'
then
tags = list_difference(tags, strcat('In-Progress', 'Complete'), ',')
else
tags
fi
This just returned the original list. Should I have used something other than list_difference?