thegetty / inventories-and-surveys

"Inventories and Surveys for Heritage Management", by David Myers and Janet Hansen
0 stars 0 forks source link

Add the affiliations to the Foreword authors in the TOC #54

Closed geealbers closed 8 months ago

geealbers commented 8 months ago

They'd like the Foreword authors to appear with their affiliations in the TOC:

Foreword – Timothy P. Whalen, Getty Conservation Institute Foreword – Ken Bernstein, Los Angeles City Planning Office of Historic Resources

This will require a customization to the templates. However, a change would add the affiliations to ALL contributors in all locations, so some logic will also have to be added to identify only the Foreword authors.

_includes/components/table-of-contents/item/list.js:

<span class="contributor">${contributors({ context: pageContributors, format: 'string' })}</span>

_plugins/shortcodes/contributors.js

case 'string': {
  const last = contributorNames.pop()
  let namesString = ''
  if (contributorNames.length > 1) {
    namesString = contributorNames.join(', ') + ', and ' + last
  } else if (contributorNames.length == 1 ){
    namesString = contributorNames + ' and ' + last
  } else {
    namesString = last
  }
  contributorsElement = `<span class='quire-contributor'>${namesString}</span>`
  break
}
geealbers commented 8 months ago

Done with 0b5971c