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

Gabriel Wicke <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #4 from Gabriel Wicke <[email protected]> 2011-11-10 14:14:47 UTC 
---
Single-line definition lists handling currently appears to be wildly
inconsistent:

http://www.mediawiki.org/wiki/User:GWicke/Definitionlists

My personal preference would be to treat a '; x : y' pair as a syntactic unit,
so that

*; bla : blub

produces

<ul>
<li>
<dl>
<dt>bla&#160;</dt>
<dd>blub</dd>
</dl>
</li>
</ul>

and 

*; bla :: blub

results in

<ul>
<li>
<dl>
<dt>bla&#160;</dt>
<dd>: blub</dd>
</dl>
</li>
</ul>

This would make it different from

*; bla
:: blub

which imo should result in

<ul>
<li>
<dl><dt>bla&#160;</dt></dl>
</li>
</ul>
<dl>
<dd><dl><dd>blub</dd></dl>
</dl>

to stay consistent with general nested-list handling. This is also how lists
are currently interpreted in the prototype PEG parser and HTML serializer we
are currently working on: http://www.mediawiki.org/wiki/Future/Parser_plan.

-- 
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
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to