mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
DocBook: spurious spaces in table attributes.
This commit is contained in:
parent
bfa67b1f88
commit
da92c9a950
@ -3569,7 +3569,7 @@ void Tabular::docbookRowAsHTML(XMLStream & xs, row_type row,
|
||||
Length const cwidth = column_info[c].p_width;
|
||||
if (!cwidth.zero()) {
|
||||
string const hwidth = cwidth.asHTMLString();
|
||||
attr << "style =\"width: " << hwidth << ";\" ";
|
||||
attr << "style=\"width: " << hwidth << ";\" ";
|
||||
}
|
||||
|
||||
attr << "align='";
|
||||
@ -3805,7 +3805,7 @@ docstring Tabular::xhtmlRow(XMLStream & xs, row_type row,
|
||||
Length const cwidth = column_info[c].p_width;
|
||||
if (!cwidth.zero()) {
|
||||
string const hwidth = cwidth.asHTMLString();
|
||||
attr << "style =\"width: " << hwidth << ";\" ";
|
||||
attr << "style=\"width: " << hwidth << ";\" ";
|
||||
}
|
||||
|
||||
attr << "align='";
|
||||
|
Loading…
Reference in New Issue
Block a user