Files
pandoc/test/command/pandoc-citeproc-175.md
T
John MacFarlane bf674e8ddd Markdown writer: use different width fences for nested divs.
Outer divs have longer fences. This aids clarity for the reader,
making it easier to see where the div ends. It also makes the
output compatible with some other implementations, e.g.
micromark, which require different-width fences for nesting.

Closes #9450.
2024-02-12 10:05:36 -08:00

749 B

% pandoc --citeproc -t markdown-citations
---
references:
- author:
  - family: Doe
    given: Jane
  container-title: A magazine
  id: item1
  issued:
  - month: 1
    year: 2011
  - month: 2
    year: 2011
  page: '33-44'
  title: A title
  type: 'article-magazine'
---

Missing en-dash between months
------------------------------

Foo [@item1].

Expected
--------

> Doe, Jane. 2011. "A Title." *A Magazine*, January--February.
^D
## Missing en-dash between months

Foo (Doe 2011).

## Expected

> Doe, Jane. 2011. "A Title." *A Magazine*, January--February.

:::: {#refs .references .csl-bib-body .hanging-indent entry-spacing="0"}
::: {#ref-item1 .csl-entry}
Doe, Jane. 2011. "A Title." *A Magazine*, January--February 2011.
:::
::::