<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Apr 25, 2015 at 4:36 AM, Chuck Goldstein <span dir="ltr"><<a href="mailto:cgpmw13@codingmaniac.com" target="_blank">cgpmw13@codingmaniac.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div id=":5kq" class="" style="overflow:hidden">In function HTML5Block, try replacing:<br>
<br>
  $attr = preg_replace("/^\\s*([\\w]+)\\s?/","id='$1'",$attr);<br>
<br>
with:<br>
<br>
  $attr = preg_replace("/^\\s*([\\w]+)(\\s|$)/","id='$1'$2",$attr);</div></blockquote></div><br>Or, more likely, replace it with:</div><div class="gmail_extra"><br></div><div class="gmail_extra">    $attr = preg_replace("/^\\s*([\\w\\s]+)\\s?/","id='$1'",$attr);<br></div><div class="gmail_extra"><br></div><div class="gmail_extra">-Peter</div></div>