FM2017 automaticaly exports colspec elements to XML but how to have their attributes set?
After going through both the Structure Application Developer's and Application Developer's Reference guides I still don't seem to get how can I export xml with colspec attributes set.
The context: I'm working with DocBook so tgroup is the equivalent of the TABLE element. The DTD specifies that a tgroup may have zero-or-more colspec child elements. FrameMaker doesn't allow me to add those elements, but when it exports it adds the exact number of colspec elements as there are columns. That's awesome! My problem is that the resulting xml has colspec with no attributes set. And, as a side-effect, straddling isn't exported properly.
For example, this is what FM exports
<table frame="all">
<title>yadayada</title>
<tgroup cols="12">
<colspec/>
<colspec/>
<colspec/>
<colspec/>
<colspec/>
<colspec/>
<colspec/>
<colspec/>
<colspec/>
<colspec/>
<colspec/>
<colspec/>
<tbody>
<row>
<entry namest="1" nameend="6">x</entry>
<entry namest="7" nameend="8">y</entry>
....
Other xml tools need to know which column has its colname set "1", "2" (via <colspec colname="1"/> <colspec colname="2"/>)and so on and so forth.
What am I missing ?
