1

我知道美化不能正确缩进 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>
4

1 回答 1

0

我为 Brackets.io 找到了一个使用名为Indentator的自动缩进的附加组件。

它使用快捷键 Ctrl++ AltI

  1. 首先转到File > Extension Manager并搜索Indentator
  2. 安装完成后,使用Crtl++ ,它应该可以Alt正常I工作。
于 2020-05-11T06:34:05.230 回答