Module:oyen-contionary-utils: Difference between revisions

Jump to navigation Jump to search
conflated addition and concatenation op, happens
m (maybe this works?)
(conflated addition and concatenation op, happens)
Line 19: Line 19:
   local mw_src = ""
   local mw_src = ""


   mw_src = mw_src + string.format("==[%s]==", lang:getCanonicalName())
   mw_src = mw_src .. string.format("==[%s]==", lang:getCanonicalName())


   if reconstructed then
   if reconstructed then
     mw_src = mw_src + "{{Reconstructed}}"
     mw_src = mw_src .. "{{Reconstructed}}"
   end
   end


Line 35: Line 35:
   local mw_src = ""
   local mw_src = ""


   mw_src = mw_src + string.format("===[%s]===", word_type)
   mw_src = mw_src .. string.format("===[%s]===", word_type)


   mw_src = mw_src + "<b>{{PAGENAME}}</b><br>"
   mw_src = mw_src .. "<b>{{PAGENAME}}</b><br>"


   return mw_src
   return mw_src
209

edits

Navigation menu