Working with Twig syntax

Is is possible with the Bootstrap Studio interface to add some custom code immediately after the TBODY table element and before the /TBODY element? I'm trying to use some Twig syntax at that point.

What I want to achieve with the generated HTML is something like...

tbody
{% for data in rows }}
tr
 td
  cells using twig to get text from the data array  
 /td 
/tr
{% end for %}
/tbody

but I can't see a way to get the {% for data in rows }} and {% end for %} in at those points. I can't seem to insert it at those points?

TIA,

Colin

You would probably have to covert your table component to HTML (select the object > right click > convert to HTML), and then edit the code manually.

Thanks, that works great.