I have created a Flow that takes input from a PowerApp, converts it to a HTML file in OneDrive and then converts it to a PDF file and saves it as an attachment in a SharePoint list. All steps work ok.
The issue I am having is that if I have code after inserting a table in the HTML, if there is any code after the table, the table and everthing after does not appear. If there is nothing after the table it displays correctly.
I have taken out the variables and put in static code to ensure that the issue is not to do with the code that is getting passed through to it from PowerApps.
Wondering if this is a bug?
For example the following code works:
<body>
<h1>Heading</h1>
<table>
<tr>
<td></td>
</tr>
</table>
</body>
This fails to display the table and everything below the table:
<body>
<h1>Heading</h1>
<table>
<tr>
<td></td>
</tr>
</table>
<h2>Heading 2</h2>
</body>