pandoc/test/command/pandoc-citeproc-119.md
Aner Lucero f63b76e169 Markdown writer: default to using ATX headings.
Previously we used Setext (underlined) headings by default.
The default is now ATX (`##` style).

* Add the `--markdown-headings=atx|setext` option.
* Deprecate `--atx-headers`.
* Add constructor 'ATXHeadingInLHS` constructor to `LogMessage` [API change].
* Support `markdown-headings` in defaults files.
* Document new options in MANUAL.

Closes #6662.
2020-11-14 21:33:32 -08:00

38 lines
1.1 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

```
% pandoc --citeproc -t markdown-citations
---
bibliography: 'command/biblatex-examples.bib'
csl: command/apa.csl
---
@averroes/bland; @averroes/hannes; @averroes/hercz
References {#references .unnumbered}
==========
^D
Averroes (1982); Averroes (1892); Averroes (1869)
# References {#references .unnumbered}
::: {#refs .references .csl-bib-body .hanging-indent line-spacing="2"}
::: {#ref-averroes/hercz .csl-entry}
Averroes. (1869). *Drei Abhandlungen über die Conjunction des separaten
Intellects mit dem Menschen: Von Averroes (Vater und Sohn), aus dem
Arabischen übersetzt von Samuel Ibn Tibbon*. (J. Hercz, Ed. & Trans.).
Berlin: S. Hermann.
:::
::: {#ref-averroes/hannes .csl-entry}
Averroes. (1892). *Des Averroës Abhandlung: "Über die Möglichkeit der
Conjunktion" oder "Über den materiellen Intellekt"*. (L. Hannes, Ed. &
Trans.). Halle an der Saale: C. A. Kaemmerer.
:::
::: {#ref-averroes/bland .csl-entry}
Averroes. (1982). *The epistle on the possibility of conjunction with
the active intellect by Ibn Rushd with the commentary of Moses Narboni*.
(K. P. Bland, Ed. & Trans.). New York: Jewish Theological Seminary of
America.
:::
:::
```