Prijeđi na sadržaj

Modul:Pjesnici

Izvor: Wikipedija
local p = {}

function p.my_new_infobox(frame)
  local fancy_table = mw.html.create('table')
:css({
	['background-color'] = '#94ff94',
	padding = '1px',
        border  =   "3px dotted red",
		})
    :tag('tr')
        :css({
          border  =   "1px solid black",
	})
      :tag('th')
	:wikitext('Stupac 1')
      :done()
      :tag('th')
	:wikitext('Stupac 2')
      :done()
    :done()
    :tag('tr')
      :tag('td')
        :wikitext('Dinko Ranjina')
      :done()
      :tag('td')
        :wikitext('datum neki :) ')
      :done()
    :done()
	
  return tostring(fancy_table)

end

return p