Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

That's a design issue for the filter. The B is miss-nested, ending in a different block than it starts. Closing a non-block tag won't force a block tag to be closed. Opening a new block doesn't close non-block tags to prevent (huge?) thrash in existing 'sloppy' HTML that works in most browsers, regardless of what the standard says.

They aren't perfect heuristics but they seem to work pretty well and are less restrictive than an HTML validator. Of course, it is quite simple and so is not nearly as DWIM as most browsers.

You can take:

<B>Above these lines...<p>...top.</B>
which renders (with your current settings) as
Above these lines...

...top.

and gets filtered to
<b>Above these lines...<p>...top.&lt;/B&gt;</p></b>
and make it valid by changing it to
<B>Above these lines...</b><p><b>...top.</B> ^^^^ ^^^
Above these lines...

...top.

or you can just make the PM filter happy with
<B>Above these lines...<p>...top.</p></B> ^^^^
Above these lines...

...top.

(which shows the whole thing in bold in my browser, though the HTML validator complains about it)

If you wanted to see the PM filter close the B tag because of the P tag, you'd need to

<p><B>Above these lines...<p>...top.</B> ^^^

Above these lines...

...top.

which would get filtered into
<p><b>Above these lines...</b></p><p>...top.&lt;/B&gt;</p>

Above these lines...

...top.</B>

If you have a suggestion for a better heuristic, my ears are open. It'd be interesting to see how many existing nodes would be changed by having a new block close any non-block tags. I'd expect quite a few, but I don't have evidence of that.

Updated several times right after creation to add more detail in hopes of making things as clear as possible.

- tye        


In reply to Re^2: Proper nesting of HTML to be enforced (b p /b) by tye
in thread Proper nesting of HTML to be enforced by tye

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (4)
As of 2024-04-19 20:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found