- 致编者:请牢记我们的域名wiki.mcbe-dev.net!
- 致编者:欢迎加入本Wiki的官方交流QQ群或Discord服务器!
- 基岩版1.19.31现已发布!(了解更多)
- Inner Core现已支持Xbox模组联机!(了解更多)
- 如果您是第一次来到本Wiki,欢迎注册一个账户
- 点击顶部的“编辑”或“编辑源代码”按钮即可编辑当前页面
- 请知悉:在不登录时也可以编辑和新建页面,但是您当前的IP地址会记录在编辑历史中
Module:Keys
来自Minecraft基岩版开发Wiki
This module implements {{keys}}
.
The key symbols are kept at Module:Keys/Symbols.
local p = {}
p.keys = function( f )
local args = f
if f == mw.getCurrentFrame() then
args = f:getParent().args
end
local keys = {}
for _, key in ipairs( args ) do
key = mw.text.trim( key )
if key ~= '+' and key:find( '%+' ) then
local comboKeys = {}
for comboKey in mw.text.gsplit( key, '%s*%+%s*' ) do
table.insert( comboKeys, p.key( comboKey ) )
end
table.insert( keys, table.concat( comboKeys, ' + ' ) )
else
table.insert( keys, p.key( key ) )
end
end
return table.concat( keys )
end
p.key = function( key )
if key == '' then
return ''
end
local symbols = mw.loadData( 'Module:Keys/Symbols' )
return '<kbd class="keyboard-key nowrap">' .. ( symbols[key:lower()] or key ) .. '</kbd>'
end
return p