Thank you Jim!
Yes, that solved it.
I had changed some lines in the replace_metadata just before downloading the stories.
I have this line in my personal.ini that you suggested:
Code:
ships_CHARS=>^(Uchiha|Uzumaki|Haruno|Hyuuga|Hatake|Namikaze) *([^ ]+)$=>\2
and wanted to try something similar on my own:
Code:
genre=>^([aA]ngst) and (.*)$=>Angst\,\2
genre=>^[mM]ild (.*)=>\2
This should have changed the tags to "Angst, *whatever*" and for the second tags it should strip "mild" from whatever was following - at least I thought that would happen. And since it was the second term that would change I thought it would be "2". Obviously it needs "1".
(My understanding of coding is clearly lacking.)
Thank you for your help, Jim!