Page 1 of 1

Cals model in Author mode: Display tables as tags

Posted: Thu Jul 18, 2019 1:49 pm
by boiboi
Hello,

in author mode row-Elements are rendered, so that tables are presented as such. Is there a way to easily turn off (9 and back on) this rendering so that the content of table-Elements is completely displayed as tags? Thanks.

Re: Cals model in Author mode: Display tables as tags

Posted: Fri Jul 19, 2019 8:57 am
by Radu
Hi,

The Author visual editing mode is CSS-based so you need to define an alternate CSS style which forces the "tgroup" element to have block display:
{code}
tgroup {
display: block !important;
}
{code}

https://www.oxygenxml.com/doc/versions/ ... odes2.html

If you are using DITA XML this should usually be done like this:

https://blog.oxygenxml.com/2016/10/cust ... iting.html

Regards,
Radu