Table not recognize in InDesign while using the latest namespace
Copy link to clipboard
Copied
Hi
After change namespace in indesign from "http://ns.adobe.com/AdobeInDesign/4.0/" to ""http://ns.adobe.com/AdobeInDesign/2024/", InDesign not recogize the tables.
If i made any mistakes in xml, if yes please decribed.
<Table xmlns:aid="http://ns.adobe.com/AdobeInDesign/2024/" aid:table="table" aid:trows="2" aid:tcols="1">
<Cell aid:table="cell" aid:theader="" aid:crows="1" aid:ccols="1" aid:ccolwidth="442.7142857142858" >
Some cell content
</Cell>
</Table>
Thanks
Copy link to clipboard
Copied
Maybe you need to add row elements?
<Table xmlns:aid="http://ns.adobe.com/AdobeInDesign/2024/" aid:table="table" aid:trows="2" aid:tcols="1">
<Row aid:table="row">
<Cell aid:table="cell" aid:theader="" aid:crows="1" aid:ccols="1" aid:ccolwidth="442.7142857142858" >
Some cell content row 1
</Cell>
</Row>
<Row aid:table="row">
<Cell aid:table="cell" aid:theader="" aid:crows="1" aid:ccols="1" aid:ccolwidth="442.7142857142858" >
Some cell content row 2
</Cell>
</Row>
</Table>
Copy link to clipboard
Copied
No luck.
Copy link to clipboard
Copied
I have one setup on the Mac but on my laptop traveling at the moment, I'll be back on Monday, and if nobody has replied by then let me know and I'll share the XML I have already for something similar.
I just cannot remember off the top of my head how it works and can't test it.
Touch base Monday if you have no further replies.
Copy link to clipboard
Copied
Copy link to clipboard
Copied
The default export XML file from the InDesign application uses the Tables 4.0 namespace.
Copy link to clipboard
Copied
Then why are you trying to use "2024"?

