Redcloth nested list bug

Anyone else seen this?

-------------------------8<----------------------------------
#!/usr/bin/env ruby

require 'redcloth'

rc = <<-END

Redcloth handles nested lists OK

# number 1
# number 2
** number 2 has a sublist
** this is fine, since the ordered list carries on
# number last

but not when the nested list is the last item in the parent list:

# number 1
# number 2
# number last
** number last has a sublist
** this generates unclosed tags

(I've mixed OL and UL here, otherwise you wouldn't see it).
This showed up in typo, but it seems to be in my system redcloth on Debian
too.

END

puts RedCloth.new(rc).to_html
-------------------------8<----------------------------------

rc-oops.rb (543 Bytes)

ยทยทยท

--
Rasputin :: Jack of All Trades - Master of Nuns

Dick Davies wrote:

Anyone else seen this?

Oh yes, well known bug. Another (similar) form is

** foo
* bar

Alex