我知道美化不能正确缩进PHP。我想要的只是它跳过它,因为我在页面内的PHP代码之后得到了奇怪的空格。
以下是截图:
我一直在尝试很多插件,四处寻找,我生气了!
任何人都可以提供帮助? 谢谢:))
<!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 as $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> is a student work
</footer>
</body>
</html>
答案 0 :(得分:0)
我发现了Brackets.io的一个加载项,该加载项使用称为 Indentator 的自动缩进。
它使用快捷键 Ctrl + Alt + I