今天是2024年11月20日 第47周 星期三
代人,时大变了。
我们生活在大地上,但我们的梦想超越天空。
“模块:ToWikipedia”的版本间的差异
跳到导航
跳到搜索
小 |
|||
第3行: | 第3行: | ||
function p.build( frame ) | function p.build( frame ) | ||
str = string.format([[<div class="noprint" style="clear: right; border: solid #aaa 1px; font-size: 90%%; background: #f9f9f9; width: 20em; padding: 4px; text-align: left; float: right;"> | str = string.format([[<div class="noprint" style="clear: right; border: solid #aaa 1px; font-size: 90%%; background: #f9f9f9; width: 20em; padding: 4px; text-align: left; float: right;"> | ||
− | <div style="float: left; line-height: 1.2em"> | + | <div style="float: left; line-height: 1.2em"> \[\[File:Wikipedia-logo-v2.svg|50px\]\] |
<center>[https://zh.wikipedia.org/ 维基百科]<br>提示你</center></div> | <center>[https://zh.wikipedia.org/ 维基百科]<br>提示你</center></div> | ||
<div id="text" class="plainlinks" style="margin-left: 60px;">关于<span style="white-space: normal; font-weight: bold;">%s</span>,<br>在自由的百科全书<b>维基百科</b>上<br>有相关条目。<br>请参阅:<span style="white-space: normal;">[https://zh.wikipedia.org/wiki/%s %s]</span></div> | <div id="text" class="plainlinks" style="margin-left: 60px;">关于<span style="white-space: normal; font-weight: bold;">%s</span>,<br>在自由的百科全书<b>维基百科</b>上<br>有相关条目。<br>请参阅:<span style="white-space: normal;">[https://zh.wikipedia.org/wiki/%s %s]</span></div> |
2020年7月23日 (四) 09:53的版本
local p = {} --p代表一个包(package) function p.build( frame ) str = string.format([[<div class="noprint" style="clear: right; border: solid #aaa 1px; font-size: 90%%; background: #f9f9f9; width: 20em; padding: 4px; text-align: left; float: right;"> <div style="float: left; line-height: 1.2em"> \[\[File:Wikipedia-logo-v2.svg|50px\]\] <center>[https://zh.wikipedia.org/ 维基百科]<br>提示你</center></div> <div id="text" class="plainlinks" style="margin-left: 60px;">关于<span style="white-space: normal; font-weight: bold;">%s</span>,<br>在自由的百科全书<b>维基百科</b>上<br>有相关条目。<br>请参阅:<span style="white-space: normal;">[https://zh.wikipedia.org/wiki/%s %s]</span></div> </div>]],frame.args[1],frame.args[1], frame.args[1]) return str end return p