Module:Infobox Tools: Difference between revisions

Content added Content deleted
(There's an extra space in the output, testing removing the only space I was adding)
(Removing other spaces that shouldn't be parsed as spaces...)
Line 186: Line 186:
temp_str = temp_str .. ',';
temp_str = temp_str .. ',';
--Loop through the list and append link brackets and the value to the output
--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
for w in temp_str:gmatch("(.-),") do output_str = output_str .. '[[Equipment/'..w..'|'..w..']], ' end
--Remove the extra comma and space at the end
--Remove the extra comma and space at the end
output_str = output_str:sub(1, -3);
output_str = output_str:sub(1, -3);