mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix CSS output for lists.
Somehow that got committed before it was done. I guess I'm out of practice...
This commit is contained in:
parent
3800036b2a
commit
7b5a5e524b
@ -417,9 +417,9 @@ ParagraphList::const_iterator makeEnvironment(Buffer const & buf,
|
||||
// be done at all in HTML.)
|
||||
|
||||
// Code adapated from Buffer::Impl::setLabel
|
||||
bool const isenum = bstyle.labeltype == LABEL_ENUMERATE;
|
||||
docstring enumcounter = bstyle.counter.empty() ?
|
||||
(bstyle.labeltype == LABEL_ENUMERATE ?
|
||||
from_ascii("lyxenum") : from_ascii("lyxitem") ) :
|
||||
( isenum ? from_ascii("enum") : from_ascii("lyxitem") ) :
|
||||
bstyle.counter;
|
||||
switch (par->itemdepth) {
|
||||
case 2:
|
||||
@ -438,7 +438,9 @@ ParagraphList::const_iterator makeEnvironment(Buffer const & buf,
|
||||
// not a valid enumdepth...
|
||||
break;
|
||||
}
|
||||
openParTag(xs, bstyle, to_utf8(enumcounter), pbegin->magicLabel());
|
||||
openParTag(xs, bstyle,
|
||||
string( isenum ? "lyxenum" : "lyxitem" ) + " "
|
||||
+ to_utf8(enumcounter), pbegin->magicLabel());
|
||||
}
|
||||
else
|
||||
openParTag(xs, bstyle, pbegin->magicLabel());
|
||||
|
Loading…
Reference in New Issue
Block a user