On Sun, Mar 21, 2010 at 3:05 PM, Kevin <[email protected]> wrote: > Seems strange to add a blank line to remove the <p> </p> ... It worked > though.
BoltWire basically explodes the output by \n\n and then checks each piece to see if it matches certain criteria. If it does it gets wrapped in <p></p>. If not it is is ignored. In your case, and image and a header are both ignored. But both together in one "chunk" isn't recognized, so is paragraphed. Adding the extra line space solves this. In the next release, I take certain lines that I know are not paragraphs and wrap them in \n\n before the text gets exploded so that this kind of problem is avoided. Rather complicated, but it turns out to solve lot's of little problems like linespacing between two tables, or text on top and bottom of blockquotes sections. The output is now almost automatic... Wait for 3.4.10. Cheers, Dan P.S. If you find a good simple doc on html levels, it might be handy. Could probably be used to reorder our markup rules and the vspace rules to get almost perfect xhtml. -- 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.
