Jump to content

Module:Coxeter–Dynkin diagram

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by JohnBlackburne (talk | contribs) at 21:14, 3 December 2013 (test CDD module). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

function p.CDD(frame)
    local args = {}
     local pframe = frame:getParent()
    local body ='<span style="display:inline-block;">' -- the output string
    for x in (pframe.args) do
	    body = body .. "[[File:CDel_" .. x .. ".png|link=]]"
    end
    
    body = body .. "</span>"
    return body

end
return p