selector required default (none)A CSS selector picking which table(s) get an Export to XLSX button. Use a class like .xlsexportable or an id like #report. The command targets every element matching it on the page. With no selector the command does nothing.
[{tableexport:.xlsexportable}]
[{tableexport:#report}]
[{tableexport:}]
{tableexport:.xlsexportable}
<table class="xlsexportable">
<tr><th>Name</th><th>Votes</th></tr>
<tr><td>Alpha</td><td>12</td></tr>
</table>
| Name | Votes |
|---|---|
| Alpha | 12 |