Hello, you have come here looking for the meaning of the word . In DICTIOUS you will not only get to know all the dictionary meanings for the word , but we will also tell you about its etymology, its characteristics and you will know how to say in singular and plural. Everything you need to know about the word you have here. The definition of the word will help you to be more precise and correct when speaking or writing your texts. Knowing the definition of, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.


local p = {}

error_module = require('Module:error message')
errormsg = error_module.main

function p.main(frame, out, in_)
    if out == nil or in_ == nil then
        return errormsg('Use the module the following way: {{#invoke:User:Njardarlogar/editor|main|<text to be replaced>|<text to be inserted instead>}}')
    end
    args = frame.args
    title = args
    text = frame:expandTemplate{title = title}
    text = text:gsub(out, in_)
    return text
end

return p