打开/关闭菜单
60
73
29
1.1K
武外梗百科
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

Module:PageSummary:修订间差异

武外梗百科 爱国好学自强图新的百科全书
无编辑摘要
无编辑摘要
 
第90行: 第90行:


     -- 4. 渲染 HTML
     -- 4. 渲染 HTML
     local res = mw.html.create('div'):css({['display'] = 'flow-root', ['line-height'] = '1.5'})
     local res = mw.html.create('div'):css({
        ['display'] = 'flow-root',  
        ['line-height'] = '1.5',
        ['margin-bottom'] = '1em' -- 也可以通过这里控制整个组件下方的间距
    })
      
      
     -- 標題
     -- 标题
     res:tag('div')
     res:tag('div')
       :css({['font-size'] = '1.15em', ['font-weight'] = 'bold', ['margin-bottom'] = '4px'})
       :css({['font-size'] = '1.15em', ['font-weight'] = 'bold', ['margin-bottom'] = '4px'})
       :wikitext('[[' .. pageName .. ']]')
       :wikitext('[[' .. pageName .. ']]')


     -- 右側縮圖
     -- 右侧缩略图
     if firstImage then
     if firstImage then
         res:wikitext('[[File:' .. firstImage .. '|100px|right|link=' .. pageName .. ']]')
         res:wikitext('[[File:' .. firstImage .. '|100px|right|link=' .. pageName .. ']]')
     end
     end


     -- 摘要正文
     -- 摘要正文:在末尾增加空行
     res:wikitext(summary)
    -- 方法:在 summary 字符串后直接加上 <br /> 或 \n\n
     res:tag('div')
      :wikitext(summary .. '<br /><br />')  


     return tostring(res)
     return tostring(res)