Well, my situation is slightly different from all topics related to HTML formatting. In addition, I installed every HTML formatting plugin there with mixed results and no one will solve my problem.
In addition, configuring these plugins can be difficult, as I am not a programmer, and some authors do not provide sufficient information to configure their plugins.
Currently, the only plugin that formats my HTML somewhat Ok is HTMLTidy , the problem is that it uses too much space for each tag. See my example below.
I also tried what they mentioned in this thread , and it only works to some extent, like indentation, but not for "true" markup formatting.
All I want to do is rotate this markup:
<ul>
<li>
item here
</li>
<li>
item here
</li>
<li>
item here
</li>
</ul>
Or this one:
<p>
Content...
</p>
In it:
<ul>
<li>item here</li>
<li>item here</li>
<li>item here</li>
</ul>
And this:
<p>Content...</p>
Keeping each tag on a separate line of opening / closing tags is a waste of time for me.
Any idea how to do this, either modifying something in TidyHTML, either manually or in any other way?
Thanks in advance.
source
share