mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-11 20:07:22 +00:00
1a7146ba70
Closes #8595.
794 B
794 B
% pandoc -f bibtex -t csljson
@misc{doe,
author = "Jane Doe",
title = "Work",
year = "2021",
url = "%20and%20"
}
^D
[
{
"URL": "%20and%20",
"author": [
{
"family": "Doe",
"given": "Jane"
}
],
"id": "doe",
"issued": {
"date-parts": [
[
2021
]
]
},
"title": "Work",
"type": ""
}
]
% pandoc -f bibtex -t csljson
@misc{doe,
author = "Jane Doe",
title = "Work",
year = "2021",
doi = "%20and%20"
}
^D
[
{
"DOI": "%20and%20",
"author": [
{
"family": "Doe",
"given": "Jane"
}
],
"id": "doe",
"issued": {
"date-parts": [
[
2021
]
]
},
"title": "Work",
"type": ""
}
]