function renderNamesToHtml(ama: BibliographyItem): string | undefined {
  const authorsToRender = determineAuthorNames(ama.authors);
  if (authorsToRender.length <= 0) return undefined;
  return span("_bib_author_name",
    {itemprop: "name"},