विभाग:Suppress categories/doc
Appearance
या विभागास (मॉड्यूल) अल्फा ही श्रेणी देण्यात आलेली आहे. तो तिसऱ्या-व्यक्तिद्वारे अंतर्दानास(इन्पुट) तयार आहे व त्याचा वापर, काही समस्या उद्भवते काय हे पाहण्यासाठी, काही पानांवर करता येउ शकतो, पण, त्याकडे लक्ष ठेवणे आवश्यक आहे. नविन फिचर्सबद्दल काही सुचवण्या किंवा त्यांच्या अंतर्दाय/बहिर्दाय (इन्पुट/आउटपुट) मध्ये काही बदल करावयाचे असतील तर, त्यांचे स्वागतच आहे. |
This is a simple module to strip categories from wikitext. For example, if passed the code "foo[[Category:Some category]]
", it will return only "foo
".
The module properly handles categories escaped with the colon trick, categories whose names include invalid characters such as ">
", and categories that are surrounded with nowiki tags. However, it does not support complex wikitext such as nested links or magic words like __TOC__
. Even so, it should still remove the vast majority of categories from any given wikitext.
Usage
[संपादन]{{#invoke:Suppress categories|main|input text}}
Examples
[संपादन]Code | Output |
---|---|
{{#invoke:Suppress categories|main|foo}}
|
foo |
{{#invoke:Suppress categories|main|foo[[Category:Some category]]}}
|
foo |
{{#invoke:Suppress categories|main|foo[[Category:Some category]]bar[[Category:Another category]]}}
|
foobar |
{{#invoke:Suppress categories|main|foo{{{some_parameter|[[Category:Bar]]}}}}}
|
foo |
{{#invoke:Suppress categories|main|foo[[Category:Bad ca[]tegory link]]}}
|
foo[[Category:Bad ca[]tegory link]] |
{{#invoke:Suppress categories|main|foo[[:Category:Colon trick]]}}
|
fooCategory:Colon trick |
{{#invoke:Suppress categories|main|foo[[Category:Piped link|bar]]}}
|
foo |
{{#invoke:Suppress categories|main|foo[[Category:Piped link|ba[]r]]}}
|
foo |
{{#invoke:Suppress categories|main|foo[[non-category link]]}}
|
foonon-category link |
{{#invoke:Suppress categories|main|foo[[ Category : Some category with spaces ]]}}
|
foo |