Beautify cannot indent my HTML after PHP in Brackets -
i know beautify cannot indent php. want skips it, because strange spaces after php code inside page.
here's screenshot :
i have been trying lot of plugins, looking around hour, i'm getting mad !
anyone may ? :)
<!doctype html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href="style.css"> <title>microcms - home</title> </head> <body> <header> <h1>microcms</h1> </header> <?php foreach ($articles $article) : ?> <article> <h2><?php echo $article['art_title']; ?></h2> <p> <?php echo $article['art_content']; ?> </p> </article> <?php endforeach; ?> <footer> <a href="http://www.test.fr/">mircrocms</a> student work </footer> </body> </html>
Comments
Post a Comment