67 741
contributi
Nessun oggetto della modifica |
mNessun oggetto della modifica |
||
Riga 5: | Riga 5: | ||
local SubPageTitle | local SubPageTitle | ||
local Title | local Title | ||
local pre = mw.html.create( 'pre' ) | local pre = mw.html.create('pre') | ||
local DoubleLF = string.char(10) .. string.char(10) | |||
if not frame.args[1] then | if not frame.args[1] then | ||
Riga 16: | Riga 17: | ||
Title = mw.title.getCurrentTitle() | Title = mw.title.getCurrentTitle() | ||
SubPageTitle = mw.title.makeTitle(Title.namespace, Title.text .. '/' .. SubPageName) | SubPageTitle = mw.title.makeTitle(Title.namespace, Title.text .. '/' .. SubPageName) | ||
local Intro = 'Questo esempio è automaticamente generato a partire dal codice di esempio presente in ' .. SubPageTitle | |||
local CodeString = 'Il codice' | |||
local ReturnString = 'restituisce' | |||
--return mw.title.getCurrentTitle().prefixedText .. '/' .. SubPageName .. mw.title.getContent(mw.title.getCurrentTitle().prefixedText) -- mw.title.getCurrentTitle():getContent() | --return mw.title.getCurrentTitle().prefixedText .. '/' .. SubPageName .. mw.title.getContent(mw.title.getCurrentTitle().prefixedText) -- mw.title.getCurrentTitle():getContent() | ||
Riga 23: | Riga 28: | ||
:css( 'width', '65%' ) | :css( 'width', '65%' ) | ||
:wikitext(mw.text.nowiki(SubPageTitle:getContent())) | :wikitext(mw.text.nowiki(SubPageTitle:getContent())) | ||
return | return Intro .. DoubleLF .. CodeString .. DoubleLF .. tostring(pre) .. DoubleLF .. ReturnString .. DoubleLF .. frame:expandTemplate{ title = SubPageTitle } | ||
end | end | ||
return p | return p |