Lua: fix argument order in constructor pandoc.Cite.

This restores the old behavior; argument order had been switched
accidentally in pandoc 2.15.
This commit is contained in:
Albert Krewinkel 2021-11-09 14:43:18 +01:00
parent 9c153e3d6e
commit d4c73d5e65
No known key found for this signature in database
GPG key ID: 388DC0B21F631124
2 changed files with 6 additions and 6 deletions

View file

@ -135,9 +135,9 @@ pushWithConstructorsSubtable constructors = do
inlineConstructors :: LuaError e => [DocumentedFunction e]
inlineConstructors =
[ defun "Cite"
### liftPure2 Cite
<#> parameter (peekList peekCitation) "citations" "list of Citations" ""
### liftPure2 (flip Cite)
<#> parameter peekInlinesFuzzy "content" "Inline" "placeholder content"
<#> parameter (peekList peekCitation) "citations" "list of Citations" ""
=#> functionResult pushInline "Inline" "cite element"
, defun "Code"
### liftPure2 (\text mattr -> Code (fromMaybe nullAttr mattr) text)

View file

@ -151,17 +151,17 @@ return {
group "Inline elements" {
group 'Cite' {
test('has property `content`', function ()
local cite = pandoc.Cite({}, {pandoc.Emph 'important'})
local cite = pandoc.Cite({pandoc.Emph 'important'}, {})
assert.are_same(cite.content, {pandoc.Emph {pandoc.Str 'important'}})
cite.content = 'boring'
assert.are_equal(cite, pandoc.Cite({}, {pandoc.Str 'boring'}))
assert.are_equal(cite, pandoc.Cite({pandoc.Str 'boring'}, {}))
end),
test('has list of citations in property `cite`', function ()
local citations = {
pandoc.Citation('einstein1905', 'NormalCitation')
}
local cite = pandoc.Cite(citations, 'relativity')
local cite = pandoc.Cite('relativity', citations)
assert.are_same(cite.citations, citations)
local new_citations = {
@ -169,7 +169,7 @@ return {
pandoc.Citation('Poincaré1905', 'NormalCitation')
}
cite.citations = new_citations
assert.are_equal(cite, pandoc.Cite(new_citations, {'relativity'}))
assert.are_equal(cite, pandoc.Cite({'relativity'}, new_citations))
end),
},
group 'Code' {