如何使用Lua生成的维基代码更改媒体播放器的位置?

这是Lua代码:

function p.pron_reg(frame)
local cette_page = mw.title.getCurrentTitle()
-- récup des params & valeurs par défaut
local args = frame:getParent().args
local pays = args[1] or '<small>(要指定的地区)</small>'
local text_api = args[2]
local code_lang = args[3] or args["lang"]
local fic_audio = args["audio"]
local title = args["title"] or cette_page.text

-- Génération du wikicode
local txt = pays .. ':'
if ((text_api) or (fic_audio)) then
    if (fic_audio and fic_audio ~= '') then
        txt = txt .. 'auscultare“' .. title
        if (text_api) then
            txt = txt .. ' ' .. p.lua_pron(text_api,code_lang,'[]')
        end
        txt = txt .. ' ”[[文件:' .. fic_audio .. ']]'
    else
        txt = txt .. p.lua_pron(text_api,code_lang,'[]')
    end
else
    txt = txt .. '<small>请指定音标或音频文件(请参见[[模板:听|说明]])</small>'
end
return txt
end

创建一个IPA和音频发音的模板。是否有机会将音频播放器移动到IPA发音旁边(在»之前),就像图片中一样(链接)。

点赞
用户5287638
用户5287638

使用 Lua 代码生成的 Wikitext 被解析的方式与你自己输入的 wikitext 相同,因此这里的问题实际上与 Lua 没有任何关系。相反,它与输出的 wikitext 生成的 HTML 有关。要将媒体播放器内联显示,您需要在 CSS 中使用 display: inline-block;。您可以使用以下 wikitext 来实现这一点,而无需编辑您的维基 CSS 文件:

<div>Foo <div style="display: inline-block">[[File:Example.ogg]]</div></div>

如果你的 Lua 模块输出类似的内容,那么就可以解决这个问题了。

2017-04-27 13:16:22