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

Wrong indentation for XML header (<?xml version="1.0"?>) #783

Closed
Infocatcher opened this issue Sep 30, 2015 · 3 comments
Closed

Wrong indentation for XML header (<?xml version="1.0"?>) #783

Infocatcher opened this issue Sep 30, 2015 · 3 comments
Milestone

Comments

@Infocatcher
Copy link
Contributor

Input:

<?xml version="1.0"?>
<foo>
<bar/>
</foo>

Output:

<?xml version="1.0"?>
    <foo>
        <bar/>
    </foo>

So, there is useless indentation level after <?xml version="1.0"?>. Ans should be

<?xml version="1.0"?>
<foo>
    <bar/>
</foo>
@Infocatcher
Copy link
Contributor Author

Was broken after these commits: Infocatcher/AkelPad_scripts@37322e1
(and thanks to Skif_off for testing)

@bitwiseman bitwiseman added this to the v1.6.0 milestone Nov 17, 2015
@bitwiseman
Copy link
Member

Fixed with #683

@Infocatcher
Copy link
Contributor Author

Thanks!

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

No branches or pull requests

2 participants