Todd Chester: Your code does not render as downloadable links here and here and in this recent thread because you're using  &lt;code&gt; and  &lt;/code&gt; instead of  <code> and  </code> respectively as your XML code tags. Please see Markup in the Monastery, Writeup Formatting Tips and Perl Monks Approved HTML tags (and possibly also How do I change/delete my post?), and then save yourself from going nuts with all the <br>s, &lt;s and &gt;s (update: not to mention the &nbsp;s) when you enter code.

And yes, this is the XML Police.

Update: I was a bit puzzled by the  my $Seconds = $_[0]; portion of the originally fake-&lt;code&gt;-tagged source here (now fixed). I had expected the  [0] to render as a link and it didn't. Turns out that  [] [0] don't linkify;  [01] [1] [10] etc. linkify as I expected. (The behavior of  [ ] (one or more spaces enclosed in square brackets) is trickier: the space(s) seem to linkify only if the opening  [ is preceded by a non-space "helper" character. Oh, well...) So add  &#91; &#93; to the list of entities you don't have to worry about if you use proper  <code> ... </code> or  <c> ... </c> tags. XML Police over and out.


Give a man a fish:  <%-{-{-{-<


In reply to Re: Need sleep walking help by AnomalousMonk
in thread Need sleep walking help by Todd Chester

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.