aboutsummaryrefslogtreecommitdiff
path: root/test/command/biblatex-bibstring-resolution.md
blob: f1dc6f4def96820779824d9a95067b757fd17b41 (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
---


```