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


```