Coloring in HTML is done through lengthy <FONT COLOR="#RRGGBB">...</FONT>,

Actually, the FONT tag has been deprecated or dropped by the W3C. If you validate as HTML 4, you will get kicked for using it.

The proper way to do it is with a STYLE attribute on whatever group (e.g. a P) that you want it to apply to, or SPAN if you just need for grouping.

But I would not use (lengthy) literal colors all over the place. I'd set up styles and then refer to those by name using the CLASS attribute.

PM seems to filter out a STYLE attribute, though. I see it in the edit box but not if I view source for the preview.

The style sheet itself will have its own URL and is not downloaded with every page.

it's always possible (and quick) to download the code and use the editor of choice. It's what we usually do anyway, when we need to take a deeper look at the code and maybe run it.

I agree, that's the best solution for real listings.


In reply to Re: Re: Feature request: Colourful comments? by John M. Dlugosz
in thread Feature request: Colourful comments? by Superlman

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.