
در صورت تمایل یک صفحهٔ توضیحات برای این پودمان اسکریبونتو ایجاد کنید. ویرایشگران میتوانند در صفحات تمرین (ایجاد | آینه) و آزمایشی (ایجاد) این پودمان را آزمایش کنند. لطفاً ردهها را به زیرصفحهٔ /توضیحات بیافزایید. زیرصفحههای این پودمان. |
local i = {} function i.HiddenUnicode(frame) local txt = frame.args[1] or ''; local catUnicodeIssue = ''; -- Note the quote ("") below is not empty and actually contains a hidden unicode character. if mw.ustring.match(txt,"") ~= nil then catUnicodeIssue = '[[' .. 'Category:Listing with hidden unicode character]]' end return catUnicodeIssue; end return i;