Zend certified PHP/Magento developer

How to convert raw HTML dynamically in Magento 2

I want to show this table on the frontend Product View page

How to replace {{custom_product_attribute_1}} with actual product attribute value. and these attributes can be dynamic.

Custom RAW HTML Template –

<table style="border-collapse: collapse; width: 100%;" border="1">
    <tbody>
        <tr>
            <td style="width: 16.6667%;">{{custom_product_attribute_1}}</td>
            <td style="width: 16.6667%;">{{custom_product_attribute_2}}</td>
            <td style="width: 16.6667%;">{{custom_product_attribute_3}}</td>
            ........
        </tr>
    </tbody>
</table>

Expected Result:-

<table style="border-collapse: collapse; width: 100%;" border="1">
    <tbody>
        <tr>
            <td style="width: 16.6667%;">10</td>
            <td style="width: 16.6667%;">15</td>
            <td style="width: 16.6667%;">30</td>
            ........
        </tr>
    </tbody>
</table>

I am using Admin to create HTML templates.

enter image description here