And*_*een 4 mediawiki wikipedia mediawiki-templates
我注意到使用带有等号的链接似乎不能正常工作(当链接放在{{missing information}}模板中时).有没有办法解决这个限制,以便可以在MediaWiki模板中包含带有等号的链接?
{{missing information|[https://www.google.com/search?q=google+search+test This link has an equals sign in it, and the template is not displaying properly.]}}
{{missing information|[https://www.google.com/ This link has no equals sign in it, and it's working properly.]}}
这是因为MediaWiki将此视为具有名称的参数[https://www.google.com/search?q(该值是后面的字符串参数的其余部分=).您可以使用编号参数解决此问题:
{{missing information|1=[https://www.google.com/search?q=google+search+test This link has an equals sign in it, and the template is not displaying properly.]}}
如果你有更多的参数,只有一些参数有问题,事情变得更复杂,我不知道它是如何工作的.但是使用编号参数应该可行.