Module:User:Theknightwho/test1

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


local export = {}

local new_title = mw.title.new
local parse = require("Module:User:Theknightwho/template parser/new").parse

function export.test1(frame)
	local title = frame.args
	
	function mw.title.getCurrentTitle()
		return new_title(title)
	end
	
	return parse(new_title(title):getContent()):expand()
end

return export