aboutsummaryrefslogtreecommitdiff
path: root/test/command/pandoc-citeproc-move-period-inside-quote.md
blob: e08c6b00ff943a47cadcd1a8523f1aef83ef81c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
```
% pandoc --citeproc -t markdown-citations
---
csl: 'command/chicago-fullnote-bibliography.csl'
references:
- DOI: 10.1038/171737a0
  URL: 'http://www.nature.com/nature/journal/v171/n4356/abs/171737a0.html'
  accessed:
    day: 17
    month: 6
    year: 2008
  author:
  - family: Watson
    given: J. D.
  - family: Crick
    given: F. H. C.
  container-title: Nature
  custom4: custom4
  id: WatsonCrick1953
  issue: 4356
  issued:
    date-parts:
    - - 1953
      - 4
      - 25
  language: 'en-US'
  note: this is a note
  original-date:
    year: 1951
  page: '737-738'
  title: 'Molecular structure of nucleic acids: a structure for
    deoxyribose nucleic acid'
  title-short: Molecular structure of nucleic acids
  type: 'article-journal'
  volume: 171
suppress-bibliography: true
---

Here is a "test citation" [@WatsonCrick1953].

Here is a test citation [@WatsonCrick1953].
^D
Here is a "test citation."[^1]

Here is a test citation.[^2]

[^1]: J. D. Watson and F. H. C. Crick, "Molecular Structure of Nucleic
    Acids: A Structure for Deoxyribose Nucleic Acid," *Nature* 171, no.
    4356 (April 25, 1953): 737--38,
    doi:[10.1038/171737a0](https://doi.org/10.1038/171737a0).

[^2]: Ibid.
```