f63b76e169
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.
30 lines
487 B
Markdown
30 lines
487 B
Markdown
```
|
|
% pandoc --citeproc -t markdown-citations
|
|
---
|
|
references:
|
|
- author:
|
|
- family: Author
|
|
given: Al
|
|
id: item1
|
|
issued:
|
|
date-parts:
|
|
- - 1998
|
|
title: 'foo bar baz: bazbaz foo'
|
|
type: 'article-journal'
|
|
---
|
|
|
|
Foo [@item1].
|
|
|
|
References {#references .unnumbered}
|
|
==========
|
|
^D
|
|
Foo (Author 1998).
|
|
|
|
# References {#references .unnumbered}
|
|
|
|
::: {#refs .references .csl-bib-body .hanging-indent}
|
|
::: {#ref-item1 .csl-entry}
|
|
Author, Al. 1998. "Foo Bar Baz: Bazbaz Foo."
|
|
:::
|
|
:::
|
|
```
|