Dokumentaci tohoto modulu lze vytvořit na stránce Nápověda:Modul:Quote/tools
local p = {} function p.addQuoteSigns( frame, text ) text = text or frame.args[1] local output if mw.ustring.find( text, "^[“„«»].*[«»“”]$" ) then output = text .. "[[Kategorie:Údržba:Citační šablona s heslem v uvozovkách]]" else output = "„" .. text .. "“" end return output end return p