We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67daf96 commit 0b2adf9Copy full SHA for 0b2adf9
src/Text/Pandoc/Readers/RIS.hs
@@ -142,7 +142,7 @@ risRecordToReference keys = addId $ foldr go defref keys
142
addName k v r =
143
let new = toName [] . B.toList . B.text $ v
144
f Nothing = Just (NamesVal new)
145
- f (Just (NamesVal ns)) = Just (NamesVal (ns ++ new))
+ f (Just (NamesVal ns)) = Just (NamesVal (new ++ ns))
146
f (Just x) = Just x
147
in r{ referenceVariables =
148
M.alter f k (referenceVariables r) }
test/command/7894.md
@@ -38,13 +38,13 @@ ER -
38
[
39
{
40
"author": [
41
- {
42
- "family": "Keisler",
43
- "given": "H. Jerome"
44
- },
45
46
"family": "Chang",
47
"given": "C. C."
+ },
+ {
+ "family": "Keisler",
+ "given": "H. Jerome"
48
}
49
],
50
"edition": "3",
0 commit comments