Use code2html
to syntax-highlight and HTML-ify your code before posting to
'Monks, etc. This is a perl one-liner to work with code2html
utilizing Win32::Clipboard to transmogrify the code without writing
files which then would have to be opened, copied, etc.

perl -"MWin32::Clipboard" -e "$tmp=$ENV{'TEMP'};
$tmp.='\tmpcode2html'; $tmp=~s#\\#\\\\#g;
$clp=Win32::Clipboard(); $it=$clp->Get(); open(CH,\"^|perl -S
code2html -v -lperl -ohtml-dark ^>$tmp\") or die $!;
print CH $it; close CH; $tmp=~s#\\\\#/#g; open(TF,$tmp);
read(TF,$it,(-s $tmp));$clp->Set($it); unlink $tmp;"

Please note that this looks all wrong to UNI* gurus who see the quoting through typical shell rules that apply there; Win is different and there's a couple of not-well-known Windoze shell escaping tricks demonstrated in this code, as well.

Also shows how to open a pipe to a process to be written to by Perl, has the ugly kludge of writing a tmp file -- if anyone knows a *Windoze*-workable way to avoid this please comment.


In reply to Perl4Win32: prettify code syntax by Intrepid

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.