aboutsummaryrefslogtreecommitdiff
path: root/test/command/biblatex-bibstring-resolution.md
blob: 6f94898ea5f9dd7c76abcf3b6fbf8926772e706a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
```
% pandoc -f biblatex -t markdown -s
@book{item1,
	Title = {The Title: \bibstring{newseries}},
        Hyphenation = {english}
}

^D
---
nocite: "[@*]"
references:
- id: item1
  language: en-US
  title: "The title: New series"
  title-short: The title
  type: book
---


```