What's the easiest way to add a quote box to mediawiki? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T03:26:23Z http://stackoverflow.com/feeds/question/131049 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/131049/whats-the-easiest-way-to-add-a-quote-box-to-mediawiki 0 What's the easiest way to add a quote box to mediawiki? SamS 2008-09-25T01:45:15Z 2008-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 &amp; 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#131330 2 Answer by Steve K for What's the easiest way to add a quote box to mediawiki? Steve K 2008-09-25T03:26:24Z 2008-09-25T03:26:24Z <p>Mediawiki supports the div tag. Combine the div tag with some styles:</p> <pre><code>&lt;div style="background-color: cyan; border-style: dashed;"&gt; A bunch of text that will wrap. &lt;/div&gt; </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#131757 3 Answer by Oddmund for What's the easiest way to add a quote box to mediawiki? Oddmund 2008-09-25T06:47:16Z 2008-09-26T00:31:47Z <p>Actually, this is a better way to do it:</p> <pre><code>&lt;blockquote style="background-color: lightgrey; border: solid thin grey;"&gt; Det er jeg som kjenner hemmeligheten din. Ikke et pip, gutten min. &lt;/blockquote&gt; </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#131886 3 Answer by SamS for What's the easiest way to add a quote box to mediawiki? SamS 2008-09-25T07:19:28Z 2008-09-25T07:19:28Z <p>I made a template in my wiki called Template:quote, which contains the following content:</p> <pre><code>&lt;div style="background-color: #ddf5eb; border-style: dotted;"&gt; {{{1}}} &lt;/div&gt; </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>