This simple template:
generates:
<div><?php if ($tabs) : ?><div></div><?php endif ?>(<?= $myvar ?>)</div>
— note the parenthesis around <?= $myvar ?>.
Changing it to either
div
if tabs
div
div!= myvar
or
div
if tabs
div
|
!= myvar
(whitespace goes after |) — removes the parenthesis.