mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Wrong DD indent in nested list when tag is not closed
This commit is contained in:
parent
5a01065159
commit
3b828dacc5
1 changed files with 9 additions and 5 deletions
|
@ -2274,12 +2274,16 @@ namespace NLGUI
|
||||||
case HTML_DD:
|
case HTML_DD:
|
||||||
if (!_DL.empty())
|
if (!_DL.empty())
|
||||||
{
|
{
|
||||||
if (_Indent > ULIndent)
|
// parser will process two DD in a row as nested when first DD is not closed
|
||||||
_Indent = _Indent - ULIndent;
|
if (_DL.back().DD)
|
||||||
else
|
{
|
||||||
_Indent = 0;
|
if (_Indent > ULIndent)
|
||||||
|
_Indent = _Indent - ULIndent;
|
||||||
|
else
|
||||||
|
_Indent = 0;
|
||||||
|
|
||||||
_DL.back().DD = false;
|
_DL.back().DD = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case HTML_SPAN:
|
case HTML_SPAN:
|
||||||
|
|
Loading…
Reference in a new issue