Hi,
I’m creating a Cloud plugin that use static macro module. This macro should render a cxhtml content which is transformed from ProseMirror node format do cxhtml by editor-confluence-transformer
But I noticed that some attributes (like table cell colors) are not supported/not interpreted well. For instance:
<table class="wrapped">
<colgroup>
<col/>
<col/>
</colgroup>
<tbody>
<tr>
<th data-highlight-colour="dark green">
<p></p>
</th>
<th data-highlight-colour="dark teal">
<p></p>
</th>
</tr>
</tbody>
</table>
will not render in static macro colored cells.
As I suppose currently in static macro module is supported only Confluence Markup version described here:
https://confluence.atlassian.com/doc/confluence-storage-format-790796544.html?_ga=2.50328038.1752924811.1580063874-284999592.1577177842
Are there any plans to extends the capabilities of static macro module, that we are able to support e.g adf format?