If auto line break were to be implemented, the board would probably have to offer the input text box in two flavors: Basic (where you have the auto line break) and Advanced (where you do your own formatting).

It is the same reason some people use Frontpage, Dreamweaver, etc. to mark up a website; some use simply Notepad or something plain.

In reality, auto line break could be one of those seemingly trivial problems but not necessarily trivial to a computer. If you mean "line break" as literally "\n" wherever they appear, that's easy (but it will break many other HTML code, such as a table unless someone enters a HTML table all in one line).

If you mean "line break" as "paragraph" that actually could be very hard. It might look "obvious" to human eye what a paragraph is but it's very for a, say, HTML parser to distinguish because it can only read data, not content.

As to the second "hypocrisy" or inconsistency, that's a good catch. But since the site has been up and running for a long while, not sure those errors or warning messages matter.

Eventually, the content of the site that people see is more important than the code behind the site that people don't see.


In reply to Re: Perl Monks hypocrisy by chunlou
in thread Perl Monks hypocrisy by Wassercrats

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.