Quelltext der Seite Modul:Common
Aus FürthWiki
Du bist aus den folgenden Gründen nicht berechtigt, die Seite zu bearbeiten:
Du kannst den Quelltext dieser Seite betrachten und kopieren.
local p = {}
function p.AttributeTable(args)
-- Draws a simple Table that contains all arguments that are fed from the
-- template to the scribunto-model. For debugging only!
t='<table class="wikitable">'
for i, v in pairs(args) do
t = t .. '<tr><td>[[Attribut:' .. i .. '|' .. i .. ']]</td>' ..
'<td>' .. v .. '</td></tr>'
end
t = t .. '</table>'
return t
end
function p.getPageName(frame)
-- This is for unlinking semantic attributes with datatype site.
p = frame.args[1] or ""
-- Throw away all text after |
t = mw.ustring.match(p, "([^|]+)")
000
1:0
Die folgende Vorlage wird auf dieser Seite verwendet:
Zurück zur Seite Modul:Common.