What's the easiest way to add a quote box to mediawiki? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T03:26:23Zhttp://stackoverflow.com/feeds/question/131049http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/131049/whats-the-easiest-way-to-add-a-quote-box-to-mediawiki0What's the easiest way to add a quote box to mediawiki?SamS2008-09-25T01:45:15Z2008-09-26T00:31:47Z
<p>I installed mediawiki on my server as my personal knowledge base. Sometimes I copy some stuff from Web and paste to my wiki - such as tips & tricks from somebody's blog. How do I make the copied content appear in a box with border?</p>
<p>For example, the box at the end of this blog post looks pretty nice:<br />
<a href="http://blog.dreamhost.com/2008/03/21/good-reminiscing-friday/" rel="nofollow">http://blog.dreamhost.com/2008/03/21/good-reminiscing-friday/</a></p>
<p>I could use the pre tag, but paragraphs in a pre tag won't wrap automatically.. Any ideas?</p>
http://stackoverflow.com/questions/131049/whats-the-easiest-way-to-add-a-quote-box-to-mediawiki/131330#1313302Answer by Steve K for What's the easiest way to add a quote box to mediawiki?Steve K2008-09-25T03:26:24Z2008-09-25T03:26:24Z<p>Mediawiki supports the div tag. Combine the div tag with some styles:</p>
<pre><code><div style="background-color: cyan; border-style: dashed;">
A bunch of text that will wrap.
</div>
</code></pre>
<p>You can play around with whatever css attributes you want, but that should get you started.</p>
http://stackoverflow.com/questions/131049/whats-the-easiest-way-to-add-a-quote-box-to-mediawiki/131757#1317573Answer by Oddmund for What's the easiest way to add a quote box to mediawiki?Oddmund2008-09-25T06:47:16Z2008-09-26T00:31:47Z<p>Actually, this is a better way to do it:</p>
<pre><code><blockquote style="background-color: lightgrey; border: solid thin grey;">
Det er jeg som kjenner hemmeligheten din. Ikke et pip, gutten min.
</blockquote>
</code></pre>
<p>The blockquotes are better than divs because they "explain" that the text is actually a blockqoute, and not "just-some-text". Also a blockquote will most likely be properly indented, and actually look like a blockqoute.</p>
http://stackoverflow.com/questions/131049/whats-the-easiest-way-to-add-a-quote-box-to-mediawiki/131886#1318863Answer by SamS for What's the easiest way to add a quote box to mediawiki?SamS2008-09-25T07:19:28Z2008-09-25T07:19:28Z<p>I made a template in my wiki called Template:quote, which contains the following content:</p>
<pre><code><div style="background-color: #ddf5eb; border-style: dotted;">
{{{1}}}
</div>
</code></pre>
<p>Then I can use the template in a page, e.g., </p>
<blockquote>
<p>{{quote|a little test}}</p>
</blockquote>
<p>Works pretty well - Thanks!</p>