Open main menu

Changes

Module:Citation

100 bytes added, 13:22, 31 August 2012
fix the vancouver-format helper function to strip down the initials even further
local initials = {}
for word in string.gmatch(first, "%S+") do
table.insert(initials, string.sub(word,1,1) )-- .. ".")-- vancouver format does not include full stops
end
return table.concat(initials, " ")--, " ")--vancouver format does not include spaces
end
Anonymous user