mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-21 17:51:03 +00:00
Fix bug #13066
Patch from Lorenzo
(cherry picked from commit 0c70f340c0
)
This commit is contained in:
parent
160084af3c
commit
63b23ce288
@ -375,20 +375,7 @@ InsetLayout Listings
|
||||
NeedCProtect true
|
||||
RefPrefix lst
|
||||
EditExternal true
|
||||
HTMLTag pre
|
||||
HTMLStyle
|
||||
div.float-listings {
|
||||
border: 2px solid black;
|
||||
padding: 1ex;
|
||||
margin: 1ex;
|
||||
}
|
||||
div.listings-caption {
|
||||
text-align: center;
|
||||
border: 2px solid black;
|
||||
padding: 1ex;
|
||||
margin: 1ex;
|
||||
}
|
||||
EndHTMLStyle
|
||||
HTMLTag code
|
||||
DocBookTag programlisting
|
||||
End
|
||||
|
||||
|
@ -440,9 +440,7 @@ void InsetListings::latex(otexstream & os, OutputParams const & runparams) const
|
||||
docstring InsetListings::xhtml(XMLStream & os, OutputParams const & rp) const
|
||||
{
|
||||
bool const isInline = params().isInline();
|
||||
if (isInline)
|
||||
os << xml::CompTag("br");
|
||||
else {
|
||||
if (!isInline) {
|
||||
os << xml::StartTag("div", "class='float-listings'");
|
||||
docstring caption = getCaptionHTML(rp);
|
||||
if (!caption.empty())
|
||||
@ -466,9 +464,7 @@ docstring InsetListings::xhtml(XMLStream & os, OutputParams const & rp) const
|
||||
docstring def = InsetText::insetAsXHTML(os, newrp, InsetText::JustText);
|
||||
os << xml::EndTag(tag);
|
||||
|
||||
if (isInline) {
|
||||
os << xml::CompTag("br");
|
||||
} else {
|
||||
if (!isInline) {
|
||||
if (!def.empty()) {
|
||||
os << '\n' << def;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user