我希望制作一个折叠模板来隐藏一段文本并通过单击展开来显示它。我发现这样的代码如下
<div class="mw-collapsible mw-collapsed" style="background-color: #E6E6E6; border-style: thin black; font-style:italic; ">
<p><i>Try it by yourself before expanding on the right!</i></p>
<div class="mw-collapsible-content">
some text or wiki encoded text content (better for formatings and images)
that will remain hidden
until expand is clicked
</div>
</div>
我试图为(折叠)制作一个模板
<div class="mw-collapsible mw-collapsed" style="background-color: #E6E6E6; border-style: thin black; font-style:italic; ">
<p><i>Try it by yourself before expanding on the right!</i></p>
<div class="mw-collapsible-content">
{{{1}}}
</div>
</div>
我目前失败的电话是
{{Collapse|some text or wiki encoded text content (better for formatings and images)
that will remain hidden
until expand is clicked}}
但我没有成功使用 {{{1}}} 传递输入文本块,因为我的内容充满了换行符和其他格式标记。
我是否需要在模板中或在调用 wrap 以及使用哪个标签中进行操作?欢迎任何帮助。