Module:Infobox Tools: Difference between revisions

Testing removing characters from ends to remove the extra spaces in the output
(Removing other spaces that shouldn't be parsed as spaces...)
(Testing removing characters from ends to remove the extra spaces in the output)
Line 186:
temp_str = temp_str .. ',';
--Loop through the list and append link brackets and the value to the output
for w in temp_str:gmatch("(.-),") do output_str = output_str .. '[[Equipment/'..w..'|'..w..']], ' end
local tmp = w:sub(2,-2);
output_str = output_str .. '[[Equipment/' .. tmp .. '|' .. tmp ..']], '
end
--Remove the extra comma and space at the end
output_str = output_str:sub(1, -3);