hi!
I’m missing the possiblity to layout code (espacially HTML) with one click. My problem is, I often get the old and horribly layouted files from my customers and just want to layout and indent these for better viewing.
Prior to EmEditor I used PSPad and there was a function to layout at least HTML according to the DOM.
<html><head><title>Test</title></head><body>test</body></html>
becomes
<html>
<head>
<title>Test</title>
</head>
<body>test</body>
</html>
HTMLTidy is capable of doing this but the result isn’t quite what I expected not to mention other programming languages aren’t supported.
IMHO this “Layout and Indent”-feature would be a great addition to the outline plugin which already can identify various code levels.
If not, I want to know how i can write a plugin for EmEditor to achieve this goal.