It seems the whole buzzword.org.uk site is down (tobyink?). I tried to switch to the highlighting by blogs.perl.org, to have the code highlighted at least, but my jquery-fu is weak and I wasn't able to make it work.

*UPDATE*: It works. Here's the relevant part from my FreeNodelet:

<!-- Syntax HL --> <style> p.code { margin-top: 2px; margin-bottom: 2px; background: #08080f; } code.prettyprint { background-color: #112 !important; } </style> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <link rel="stylesheet" href="http://blogs.perl.org/mt/mt-static/plugin +s/GCPrettify/prettify.css" type="text/css" media="all" /> <script src="http://blogs.perl.org/mt/mt-static/plugins/GCPrettify/pre +ttify.js"></script> <script> $(document).ready(function () { $('p.code').wrap('<pre><code class="prettyprint"></code></pre>'); $('p.code br').remove(); window.prettyPrint(); }); </script>

You might need to fix some colours, e.g. like me:

span.pln { color: #eee } span.pun { color: #ffd } span.typ { color: #e4e } span.lit { color: #2dd } span.com { color: #f11 }

I also used

$('p.code').not('.pmsig *').wrap('<pre><code class="prettyprint"></cod +e></pre>');

to skip highlighting in signatures.

($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,

In reply to Re^2: PerlMonks meets Twitter Bootstrap (copy?) (updated) by choroba
in thread PerlMonks meets Twitter Bootstrap by tobyink

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.