-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
If you do this:
strip_html("<ul><li>one</li><li>two</li><li>three</li></ul>
You end up with "onetwothree" what is probably better would be something
like this:
"
* one
* two
* three
"
Is there any reason you can't just use plain text? If HTML was important,
an alternate solution would be to use ReST and then automatically convert
it to HTML.
Original issue reported on code.google.com by [email protected] on 2 Feb 2010 at 9:42