Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
andrecool-68 opened this issue Nov 1, 2021 · 0 comments
Open

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

andrecool-68 opened this issue Nov 1, 2021 · 0 comments

Comments

@andrecool-68
Copy link

andrecool-68 commented Nov 1, 2021

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant