rehamaltamimi / gwtwiki

Automatically exported from code.google.com/p/gwtwiki
0 stars 0 forks source link

numbered sub-lists inside of unordered lists do not render with numbers but with bullets #18

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.Render this markup:

*item 1
*# item 1.1
*# item 1.2
* item 2

2.
3.

What is the expected output? What do you see instead?
I expect the numbered sub-list to render w/ numbers, instead it renders w/
bullets.

What version of the product are you using? On what operating system?
3.0.13

Please provide any additional information below.

Original issue reported on code.google.com by steven.b...@gmail.com on 24 Jul 2009 at 6:31

GoogleCodeExporter commented 8 years ago
For me your example renders to:

<ul>
<li>item 1
<ol>
<li>item 1.1
</li>
<li>item 1.2
</li></ol></li>
<li>item 2</li></ul>

If I create a minimal HTML page like this:
<html>
<body>
<ul>
<li>item 1
<ol>
<li>item 1.1
</li>
<li>item 1.2
</li></ol></li>
<li>item 2</li></ul>
</body>
</html>

I think the the numbered sub-list is shown correctly in a browser.

Do you have some CSS settings activated for the <ol> tag, which modifiy the ?

Original comment by axelclk@gmail.com on 24 Jul 2009 at 9:42

GoogleCodeExporter commented 8 years ago
You are correct, I checked and this:
* x1
* x2
*# xx1
*# xx2

renders to this:
<ul>
<li>x1</li>
<li>x2
<ol>
<li>xx1</li>
<li>xx2</li></ol></li></ul>

Which is correct. I must have a flaw in my css.

Original comment by steven.b...@gmail.com on 29 Jul 2009 at 7:18

GoogleCodeExporter commented 8 years ago

Original comment by axelclk@gmail.com on 1 Aug 2009 at 8:49