0

我有一个食谱维基,想在主页上放一个“随机食谱”。希望您能够帮助我。

我查看了维基媒体的帮助,但没有找到任何 http://www.mediawiki.org/w/index.php?title=Special%3ASearch&profile=advanced&search=random+article&fulltext=Search&ns90=1&redirs=1&profile=advanced

这是我正在研究的维基 http://lesmots.uy/labs/enciclochef

谢谢

4

1 回答 1

0

我相信您正在寻找Extension:ArticleInclude。它允许您用 wiki 上的任何随机文章覆盖包含的文章名称。它还允许您限制长度,以便您只能看到该文章的片段。

出于您的目的,我想配​​方标题和/或成分就足够了。包括成分可能很棘手,因为您以简单的列表格式将它们列在页面顶部。如果您选择使用 ArticleInclude 扩展,我建议将您的成分保持在一行,并使用 HTML 创建换行符,以便您可以使用 lines 选项可靠地获得所需的内容。

示例,从Torta aromática更改:

<blockquote> 3 huevos <br> 3 cucharadas de leche <br> 6 cucharadas de manteca derretida <br> 1 ½ tazas de harina <br> ¾ tazas de azúcar <br> 2 cucharaditas de polvo de hornear <br> 2 cucharaditas de canela <br> ¼ cucharadita de clavo de olor molido <br> ½ cucharadita de cáscara de limón rallada </blockquote>

相关选项:

random: Overides article and shows a random article of the given namespaces
count: How many letters will be shown, negative values will display the whole article removing the specific number of letters from the end
lines: Count lines (not letters) that will be shown

编辑: 如果您不想为扩展而烦恼,自 MediaWiki 1.8 以来,Transclusion是开箱即用的,但没有随机文章功能。您之前可能已经在新用户讨论页面上看到过嵌入,其中许多 wiki 通常会链接到一个页面,其中包含对新用户有用的建议。

于 2012-10-19T03:07:37.730 回答