Content deleted Content added
No edit summary |
No edit summary |
||
Line 36:
function core( args )
local span_open_tag; -- holds CITEREF and css
local contributors = ''; -- chapter or contribution authors
local source = ''; -- editor/author date list that forms a CITEREF link to a full citation; mimics harvnb output except year in parentheses
-- form the CITEREF anchor
Line 97 ⟶ 96:
-- and put it all together
result = span_open_tag .. contributors .. ' ' .. args.contribution .. args.separator .. ' In ' .. source .. args.postscript .. '</span>' .. args.err_msg;
return result;
|