GNOME Bugzilla – Bug 723169
PHP/HTML: Syntax highlight displayed wrong when apostrophes and quotes are present
Last modified: 2014-02-03 10:27:29 UTC
Gedit's syntax highlight is display wrong when apostrophes and quotes are present. The following PHP examples are broken: <img src="<?php echo $product["image"]; ?>" alt="" /> <img src='<?php echo $product['image']; ?>' alt='' /> <img src='<?php echo $product["image"]; ?>' alt='' /> The following is all right: <img src="<?php echo $product['image']; ?>" alt="" /> The following ASP are wrong (each line, a broken one): <tr class="linhacursorpointer" title="<%=rsConsulta("procedimento_codigo")%> - <%=rsConsulta("descricao")%>"> <input type="checkbox" value="1" <% if cbool(request.form("chkExibirProducaoDiaria")) = true then %> checked="checked" <% end if %> /> Please check the attachment. Thanks.
Created attachment 267409 [details] PHP examples ...
*** This bug has been marked as a duplicate of bug 565524 ***