https://bugzilla.wikimedia.org/show_bug.cgi?id=33143

       Web browser: ---
             Bug #: 33143
           Summary: Wrong rendering of levels of lists
           Product: MediaWiki extensions
           Version: any
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: Unprioritized
         Component: VisualEditor
        AssignedTo: wikibugs-l@lists.wikimedia.org
        ReportedBy: e...@wp.pl
                CC: ne...@wikimedia.org, tpars...@wikimedia.org
    Classification: Unclassified


# abc
## second
#* next

Should be:
1. abc
  1. second
  * next

It is now:
1. abc
  1. second
* next

HTML rendering is now:
<ol>
 <li><p>abc</p></li>
 <ol>
  <li><p>second</p></li>
 </ol>
 <ul>
  <li><p>next</p></li>
 </ul>
</ol>

Should be:
<ol>
 <li><p>abc</p>
  <ol>
   <li><p>second</p></li>
  </ol>
  <ul>
   <li><p>next</p></li>
  </ul>
 </li>
</ol>

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to