Ok, thank you! I didn't have all the table patterns exactly right.
Much improved now.

This markup is a bit of a problem though:

text
* one
* two

Because BoltWire escapes the bullet list, and then sees it as

text
escaped_bullet_string

Which it interprets as this (otherwise, the correct response).

<p>text<br />
escaped_bullet_string</p>

If you did

text

* one
* two

You would get

<p>text</p>

escape_bullet_string

Which is perfect. Now I could manually insert an extra line return in
there but perhaps the author intended the two different markups to
give two different outputs? We would be blocking that. Or even perhaps

text
* one
* two
text

Which perhaps is supposed to be all in one paragraph as opposed to

text

* one
* two

text

I'm open to suggestions, but I think it is probably valid html, and it
is pretty much doing what we tell it to on this point at least. So
maybe we should just leave this.

Cheers,
Dan

-- 
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.

Reply via email to