in reply to Missing download links.

I'll bet it was done with <pre/>...?

Replies are listed 'Best First'.
Re^2: Missing download links.
by ikegami (Patriarch) on Jan 09, 2010 at 00:10 UTC
    He couldn't use <c>..</c> because that would have limited him to the iso-8859-1 charset. The content of posts must be encoded using iso-8859-1 when submitted, and entities get displayed literally inside <c>..</c> tags.

      Good to know. I have been a little perplexed in the past by related comments about charsets and the site which are now clear. Thanks.

        PerlMonks delivers pages in iso-8859-1, so the form content must be encoded using the same.

        Hoping for the best, some browsers HTML-encode characters that aren't present in the form's charset. So if I enter "♠" into the form, my browser sends in "&#9824;". Outside of code tags, that sequence gets echoed back by PerlMonks so you see "♠".

        Of course, code tags encode HTML meta-characters including "&", so the sequence gets encoded and appears as "&#9824;".

Re^2: Missing download links.
by almut (Canon) on Jan 09, 2010 at 00:01 UTC
    I'll bet...

    Easy to verify: click on the respective xml link.

    (Usage of <pre> is absolutely correct in this case, btw.)