Changes
Jump to navigation
Jump to search
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