Stefan Seefeld wrote:
>
> I'm using tables with colspec definitions to add multi-row
> and multi-column cells. The main document view renders these
> colspec elements the same way as the tree view, which, I guess,
> is a bug.
Even if this is suprising, this is not a bug.
Rendering these table meta-info elements as pieces of tree view is what
is specified in the style sheet (so you can see these elements and edit
them). The fact that the table does not ``look WYSIWIG'' when colspecs
and spanspecs are used was assumed to be acceptable.
If you don't like it, it is easy to change it:
in <xxe_distrib_dir>/config/sdocbook/css/sdocbook.incl, replace:
colspec,
spanspec {
display: table-column; /*table-column looks like display:tree;*/
}
by:
colspec,
spanspec {
display: none;
}
Note that these last 2 rules are already automatically used when
printing (see <xxe_distrib_dir>/config/sdocbook/css/print.incl).