Bản mẫu:Suppress categories
Giao diện
Bản mẫu này được sử dụng ở rất nhiều trang, vì thế những thay đổi đến nó sẽ hiện ra rõ ràng. Vui lòng thử nghiệm các thay đổi ở trang con /sandbox, /testcases của bản mẫu, hoặc ở không gian người dùng của bạn. Cân nhắc thảo luận các thay đổi tại trang thảo luận trước khi áp dụng sửa đổi. |
Bản mẫu này sử dụng Lua: |
This template strips categories from wikitext. For example, if passed the code "foo[[Category:Some category]]
", it will return only "foo
". It can be used to strip categories from templates as well; if passed the code "{{my template}}
", it will return the template output minus the categories.
The template 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
[sửa mã nguồn]{{suppress categories|''input text''}}
Examples
[sửa mã nguồn]Code | Output |
---|---|
{{suppress categories|foo}}
|
foo |
{{suppress categories|foo[[Category:Some category]]}}
|
foo |
{{suppress categories|foo[[Category:Some category]]bar[[Category:Another category]]}}
|
foobar |
{{suppress categories|foo{{{some_parameter|[[Category:Bar]]}}}}}
|
foo |
{{suppress categories|foo[[Category:Bad ca[]tegory link]]}}
|
foo[[Category:Bad ca[]tegory link]] |
{{suppress categories|foo[[:Category:Colon trick]]}}
|
fooCategory:Colon trick |
{{suppress categories|foo[[Category:Piped link|bar]]}}
|
foo |
{{suppress categories|foo[[Category:Piped link|ba[]r]]}}
|
foo |
{{suppress categories|foo[[non-category link]]}}
|
foonon-category link |
{{suppress categories|foo[[ Category : Some category with spaces ]]}}
|
foo |
{{suppress categories|{{User alternative account name|Example}}}}
|
Bản mẫu:User alternative account name |