mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
parent
a8aa7feb89
commit
08bf9781ee
@ -1057,14 +1057,24 @@ void makeCommand(Buffer const & buf,
|
||||
documentClass().counters().step(style.counter, OutputUpdate);
|
||||
|
||||
bool const make_parid = !runparams.for_toc && runparams.html_make_pars;
|
||||
|
||||
if (style.labeltype == LABEL_ABOVE)
|
||||
xs << html::StartTag("div")
|
||||
<< pbegin->params().labelString()
|
||||
<< html::EndTag("div");
|
||||
else if (style.labeltype == LABEL_CENTERED)
|
||||
xs << html::StartTag("div", "style = \"text-align: center;\"")
|
||||
<< pbegin->params().labelString()
|
||||
<< html::EndTag("div");
|
||||
|
||||
openParTag(xs, style, pbegin->params(),
|
||||
make_parid ? pbegin->magicLabel() : "");
|
||||
|
||||
// Label around sectioning number:
|
||||
// FIXME Probably need to account for LABEL_MANUAL
|
||||
// FIXME Probably also need now to account for labels ABOVE and CENTERED.
|
||||
if (style.labeltype != LABEL_NO_LABEL) {
|
||||
if (style.labeltype != LABEL_NO_LABEL &&
|
||||
style.labeltype != LABEL_ABOVE &&
|
||||
style.labeltype != LABEL_CENTERED ) {
|
||||
openLabelTag(xs, style);
|
||||
xs << pbegin->params().labelString();
|
||||
closeLabelTag(xs, style);
|
||||
|
Loading…
Reference in New Issue
Block a user