I know that I can concatenate strings in Lua like so
String = String .. 'more'
But what if I want to add HTML and want to keep (obviously) the way it looks? For example, how do I overcome the
luac: Perl to Lua:226: unfinished string near '''
error I get when I do this
Html_string = Html_string .. "
<tr>
<th class=row>" . gettext("Last Upgrade") . "</th>
<td title=\"Upgrade_date\"Upgrade_status</td>
</tr>
"