Hello, you have come here looking for the meaning of the word
Module:ja-link/fast. In DICTIOUS you will not only get to know all the dictionary meanings for the word
Module:ja-link/fast, but we will also tell you about its etymology, its characteristics and you will know how to say
Module:ja-link/fast in singular and plural. Everything you need to know about the word
Module:ja-link/fast you have here. The definition of the word
Module:ja-link/fast will help you to be more precise and correct when speaking or writing your texts. Knowing the definition of
Module:ja-link/fast, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
local export = {}
-- Used in ]. Converts bare links to
-- {{l/ja}}-type links.
function export.link(frame)
local text = frame.args
if not text then
return nil
end
local function link(text)
return '<span class="Jpan" lang="ja">[['
.. text
.. '#Japanese|' .. text .. ']]</span>'
end
return (text
:gsub(
"%]+)%]%]",
link))
end
return export