Good day to everybody!
I have this sort of HTML file:
<tr>
<td>
<p>First name: </p>
</td>
<td>
<p> %first_name% </p>
</td>
</tr>
<tr>
<td>
<p>Last name: </p>
</td>
<td>
<p"> %last_name% </p>
</td>
</tr>
I'm looking for a way of replacing special markers of type(%smth%) by concrete data. Project's being developed under Qt, so I wonder if some Qt's methods can do it. Thanks!