Code Style Format Question...
I would really like it if the code reformat would take this code below...
<?php if ($page['highlighted']): ?>
<div id="highlighted"><?php print render($page['highlighted']); ?></div><?php endif; ?>
And convert it to this...<?php if ($page['highlighted']): ?>
<div id="highlighted"><?php print render($page['highlighted']); ?></div><?php endif; ?>
I can't find a way to do this. They have so many code formatting options which is great. I just wish I could figure this one out. Anyone know how this could be accomplished, or if it can be accomplished?
请先登录再写评论。