Hi all,

I've got a bug report (feature request?) concerning nested lists. At the
moment, the html flexwiki generates for something like this

  * list1item1
    * list2item1
    * list2item2
  * list1item1

looks like this:

<ul>
  <li>list1item1</li>
  <ul>
    <li>list2item1</li>
    <li>list2item2</li>
  </ul>
  <li>list1item2</li>
</ul>

Interestingly, while Firefox (tested version 2.x) creates its dom tree
like above, Internet Explorer (tested version 6) ends up with a slightly
different dom tree (from the same html!):

<ul>
  <li>list1item1
    <ul>
      <li>list2item1</li>
      <li>list2item2</li>
    </ul>
  </li>
  <li>list1item2</li>
</ul>

IE seems to internally "correct" the delivered html. Whouldn't it be
better if FlexWiki generated nested lists like this "corrected" version in
the first place? Because, at the moment we end up with different dom trees
in different browsers, and as I have to do lots of javascript
manipulations to nested lists generated by Flexwiki, this blows up my code
a lot (browser checks, duplicated code)...

Thank you very much in advance for changing this :-)

Greets from Germany,

Benno Dielmann.


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
Flexwiki-users mailing list
Flexwiki-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flexwiki-users

Reply via email to