SFTG Recherche, soutient un projet d'analyse de l'usage, de l'intérêt et de la contribution à ce site. Merci d'avoir répondu à l'enquête.
Module:Indication
Sauter à la navigation
Sauter à la recherche
La documentation pour ce module peut être créée à Module:Indication/Documentation
p = {}
function p.genIndication(code, nom, classe_css)
local html = mw.html.create( '' )
html:tag( 'span' )
:addClass( classe_css )
:wikitext( '(' )
:tag( 'abbr' )
:addClass( 'abbr' )
:attr( 'title', nom )
:wikitext( code )
:done()
:wikitext( ')' )
:done()
:wikitext( texte )
return tostring(html)
end
function p.indication(frame)
return p.genIndication(frame.args[1], frame.args[2], frame.args[3])
end
return p