mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ParserFunctions
synced 2024-11-15 11:59:54 +00:00
33 lines
397 B
Plaintext
33 lines
397 B
Plaintext
# @todo expand
|
|
!! functionhooks
|
|
len
|
|
!! endfunctionhooks
|
|
|
|
!! test
|
|
#len
|
|
!! input
|
|
{{#len:}}
|
|
{{#len:0}}
|
|
{{#len:test}}
|
|
!!result
|
|
<p>0
|
|
1
|
|
4
|
|
</p>
|
|
!! end
|
|
|
|
!! test
|
|
#urldecode
|
|
!! input
|
|
{{#urldecode:}}
|
|
{{#urldecode:foo%20bar}}
|
|
{{#urldecode:%D0%9C%D0%B5%D0%B4%D0%B8%D0%B0%D0%92%D0%B8%D0%BA%D0%B8}}
|
|
{{#urldecode: some unescaped string}}
|
|
!! result
|
|
<p>foo bar
|
|
МедиаВики
|
|
some unescaped string
|
|
</p>
|
|
!! end
|
|
|