geoffmcl / NppTidy2

HTML-Tidy plugin for Notepad++. Uses tidy-html5 - https://github.com/htacg/tidy-html5
GNU General Public License v2.0
29 stars 8 forks source link

Tidy2 skips indents for <head> and <body> tags #10

Open andrecool-68 opened 3 years ago

andrecool-68 commented 3 years ago

Tidy2 does this:

<!DOCTYPE html>

<html>
<head>
    <title>title</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="styles.css">
</head>

<body>
    <div class="xxx">
        <p>Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text</p>
    </div>
</body>
</html>

Need to get this:

<!DOCTYPE html>

<html>
    <head>
        <title>title</title>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link rel="stylesheet" href="styles.css">
    </head>

    <body>
        <div class="xxx">
            <p>Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text</p>
        </div>
    </body>
</html>

Notepad++ v8.1.9 (32-bit) Build time : Oct 21 2021 - 23:32:04 Path : E:\allTools\Editors\Texts\Notepad++\npp.8.1.9.portable\notepad++.exe Command Line : "" Admin mode : ON Local Conf mode : ON Cloud Config : OFF OS Name : Windows 7 Home Premium (64-bit) OS Build : 7601.0 Current ANSI codepage : 1251 Plugins : ComparePlugin.dll DSpellCheck.dll Explorer.dll HexEditor.dll HTMLTag_unicode.dll ImgTag.dll JSMinNPP.dll mimeTools.dll NppConverter.dll NppExport.dll NppMarkdownPanel.dll NppSnippets.dll PreviewHTML.dll ShtirlitzNppPlugin.dll Tidy2.dll VisualStudioLineCopy.dll WebEdit.dll WindowManager.dll XMLTools.dll _CustomizeToolbar.dll