模块:CSS6:修订间差异
来自Fuckrooms Wiki
Defaultuser6(留言 | 贡献) 创建页面,内容为“local p = {} function p.import_css(frame) -- 获取模板调用中的参数 local content = frame:getParent().args.content or frame.args.content if not args or not args.content then return '' -- 无内容时返回空 end if content ~= nil then return tostring(mw.html.create("span") :addClass("import-css") :attr("data-content", content) :attr("data-style-sha256", mw.hash.hashValue("sha256", content))) end end return p” |
(没有差异)
|
2025年4月25日 (五) 12:21的最新版本
此模块的文档可以在模块:CSS6/doc创建
local p = {}
function p.import_css(frame)
-- 获取模板调用中的参数
local content = frame:getParent().args.content or frame.args.content
if not args or not args.content then
return '' -- 无内容时返回空
end
if content ~= nil then
return tostring(mw.html.create("span")
:addClass("import-css")
:attr("data-content", content)
:attr("data-style-sha256", mw.hash.hashValue("sha256", content)))
end
end
return p