On 3/16/10, blues <[email protected]> wrote: > On Mar 15, 5:26 pm, The Editor <[email protected]> wrote: > > Open for testing once again... > > > the only remark i have so far is that it still puts <p></p> around > things it shouldn't, like headers (<h1></h1>) and divs for example. > this prevents validation of course.
Can you give me some markup to look at that generates this: In my installation (3.4.6+) this markup: ! header text ! header text produces this html: <h1>header</h1> <p>text</p> <h2>header</h2> <br /> <p>text<br /> </p> Which is exactly what we want of course, minus perhaps the last line break--which only occurs for the last paragraph on the page... Hmmm, seems by just trimming the last line return before sending the block to vspace for handling this can be fixed... Cool! Is it possible you have <p> </p> around the zone in your skin to get validation under the old system? If so, it is no longer needed, and you should remove that to get things working properly. As for paragraph tags around blocks like divs, I've tried to avoid that, and in most cases it doesn't generate them. If you have an exception, please let me know and we'll see if we can't smarten BoltWire up to recognize that situation... Oh, I see it. If you do <div>text</div> more text You get the p tags, but not if you do <div>text</div> more text I think I found the right place to insert that extra line break automatically so this can be avoided. Very cool. These are exactly the kinds of things I'm looking for. The fact that these are all easy to fix now is a good sign we are on the right road. The goal is perfect validation of the underlying html code everywhere absolutely possible. Cheers, Dan P.S. I'll put out a new release later today with these last minor fixes. -- You received this message because you are subscribed to the Google Groups "BoltWire" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/boltwire?hl=en.
