Bibliography/CSL/YAML for conference events

Great. From what I tried (see below), the bibliography entries all look
good. In notes 2 and 3, genre, resp. genre and event are missing, these
would be supposed to appear in round braces, together with the date.

Pandoc output (format “plain”):

Foo.[^1] Bar.[^2] Baz.[^3] Foo.[^4] Bar.[^5] Baz.[^6]

References==========

Doe, Stacy. “This “Speech” Item Contains NONE of
[Genre|event|event-Place].” April 26, 2000.

———. “This “Speech” Item Contains Variables Event-Place.” Event-place,
April 26, 2000.

———. “This “Speech” Item Contains Variables Genre.” Genre, April 26,
2000.

———. “This “Speech” Item Contains Variables Genre, Event.” Genre
presented at the Event, April 26, 2000.

———. “This “Speech” Item Contains Variables Genre, Event-Place.” Genre,
Event-place, April 26, 2000.

———. “This “Speech” Item Contains Variables Genre, Event, Event-Place.”
Genre presented at the Event, Event-place, April 26, 2000.

[^1]: Stacy Doe, “This “Speech” Item Contains Variables Genre, Event,
Event-Place,” (Genre presented at the Event, Event-place, April 26,
2000).

[^2]: Stacy Doe, “This “Speech” Item Contains Variables Genre,” April
26, 2000.

[^3]: Stacy Doe, “This “Speech” Item Contains Variables Genre, Event,”
April 26, 2000.

[^4]: Stacy Doe, “This “Speech” Item Contains Variables Genre,
Event-Place,” (Genre, Event-place, April 26, 2000).

[^5]: Stacy Doe, “This “Speech” Item Contains Variables Event-Place,”
(Event-place, April 26, 2000).

[^6]: Stacy Doe, “This “Speech” Item Contains NONE of
[Genre|event|event-Place],” April 26, 2000.

Input:

pandoc -s -F pandoc-citeproc -t plain <<EOT

Foo [@item1]. Bar [@item2]. Baz [@item3].
Foo [@item4]. Bar [@item5]. Baz [@item6].

References {-}


csl: chicago-fullnote-bibliography.csl
references:

  • author:

    • family: Doe
      given: Stacy
      id: item1
      issued:
      date-parts:
        • 2000
        • 4
        • 26
          title: This “speech” item contains variables genre, event, event-place
          type: speech
          genre: Genre
          event-place: Event-place
          event: Event
  • author:

    • family: Doe
      given: Stacy
      id: item2
      issued:
      date-parts:
        • 2000
        • 4
        • 26
          title: This “speech” item contains variables genre
          type: speech
          genre: Genre
  • author:

    • family: Doe
      given: Stacy
      id: item3
      issued:
      date-parts:
        • 2000
        • 4
        • 26
          title: This “speech” item contains variables genre, event
          type: speech
          genre: Genre
          event: Event
  • author:

    • family: Doe
      given: Stacy
      id: item4
      issued:
      date-parts:
        • 2000
        • 4
        • 26
          title: This “speech” item contains variables genre, event-place
          type: speech
          genre: Genre
          event-place: Event-place
  • author:

    • family: Doe
      given: Stacy
      id: item5
      issued:
      date-parts:
        • 2000
        • 4
        • 26
          title: This “speech” item contains variables event-place
          type: speech
          event-place: Event-place
  • author:

    • family: Doe
      given: Stacy
      id: item6
      issued:
      date-parts:
        • 2000
        • 4
        • 26
          title: This “speech” item contains NONE of [genre|event|event-place]
          type: speech

          EOT

thanks for testing. Could you try again with the version that just went up?

Thank you, looks good.