private string CompileTagString()
        {
            string tags = string.Empty;

            Characters.ForEach(x => tags += tags_base + x);
            Fandoms.ForEach(x => tags    += tags_base + x); // all three take each item and add it to the tags string with tags_base before it
            OtherTags.ForEach(x => tags  += tags_base + x);
            tags.Trim();
            return(tags);
        }