def get_authors_tags(config=CITATION_CONFIG): """ Get the tags for main author, coauthors, alternative authors from config """ function = config.get("rank_method", "function") tags_names = [ 'first_author', 'additional_author', 'alternative_author_name', 'collaboration_name', ] tags = {} for t in tags_names: r_tag = config.get(function, t) tags[t] = tagify(parse_tag(r_tag)) return tags