10,735
edits
TheNightAvl (talk | contribs) (Added slash functionality) |
TheNightAvl (talk | contribs) mNo edit summary Tag: Reverted |
||
Line 9: | Line 9: | ||
if m_data.aliases[inflection] then inflection = m_data.aliases[inflection] end | if m_data.aliases[inflection] then inflection = m_data.aliases[inflection] end | ||
local l = m_data.labels[inflection] | local l = m_data.labels[inflection] | ||
if i > 1 and inflection | if i > 1 and not inflection == "/" then | ||
table.insert(out, " ") | table.insert(out, " ") | ||
end | end | ||
Line 22: | Line 22: | ||
table.insert(out, inflection) | table.insert(out, inflection) | ||
end | end | ||
if inflections[i+1] and inflection | if inflections[i+1] and not inflection == "/" then | ||
table.insert(out, " ") | table.insert(out, " ") | ||
end | end |