I did a bzr pull to get Gunnar's fix and did a test by temporarily changing my local copy of mouse-mousekeys.page. Yes the fix seems to work. If type isn't specified in the <list> element, you get bullets in the html. It looks like the "disc" bullets. So:
I did a bzr pull to get Gunnar's fix and did a test by temporarily changing my local copy of mouse-mousekeys .page. Yes the fix seems to work. If type isn't specified in the <list> element, you get bullets in the html. It looks like the "disc" bullets. So:
<list> <p>First< /p></item> <p>Second< /p></item> <p>Third< /p></item>
<item>
<item>
<item>
</list>
gives you:
<list type="disc"> <p>First< /p></item> <p>Second< /p></item> <p>Third< /p></item>
<item>
<item>
<item>
</list>
I haven't noticed any (glaring) undesired side effects so far.