GithubHelp home page GithubHelp logo

Vanishing closing tag about htmlmin HOT 7 CLOSED

voku avatar voku commented on May 27, 2024
Vanishing closing tag

from htmlmin.

Comments (7)

voku avatar voku commented on May 27, 2024

Thanks for the bug report, 👍 fixed in version 4.4.2.

from htmlmin.

abuyoyo avatar abuyoyo commented on May 27, 2024

Hi,
I wrote this test after the last commits. It fails.

public function testKeepPTagIfNeeded2()
    {
        $html = '
		<div>
			<p>
				<span>First Paragraph</span>
			</p>
			Loose Text
			<p>Another Paragraph</p>
		</div>
		';

        $htmlMin = new voku\helper\HtmlMin();
        $result = $htmlMin->minify($html);

        $expected = '<div><p><span>First Paragraph</span> </p> Loose Text <p>Another Paragraph</div>';

        static::assertSame($expected, $result);
    }

I'm not sure about the whitespaces in the $expected string. But I am sure about the missing </p> tag.

from htmlmin.

abuyoyo avatar abuyoyo commented on May 27, 2024

I think perhaps the closing </p> tag can only be omitted if the <p> node is immediately followed by another <p> node or if it's the last node. But I haven't thought this through. Perhaps there are other edge-cases.

from htmlmin.

voku avatar voku commented on May 27, 2024

@abuyoyo yep, and we can ignore some cases where only whitespace are in middle of nothing ... I could simplify the logic. What do you think? -> 67d39fb

from htmlmin.

abuyoyo avatar abuyoyo commented on May 27, 2024

Yeah. That looks good.
As for the whitespaces, I'm pretty sure a single non-breaking-space must be preserved on either side of the Loose Text if it was there in the original html.
" Loose Text " != "Loose Text"
However:
<p><span></span> </p> evaluates the same as <p><span></span></p> (the space before the </p> can go)
The same goes for <div><p>Text </div> which I believe evaluates to <div><p>Text</div>.
And the whitespace handling is obviously a separate (and minor) issue.
If I remember correctly, whitespace only needs to be preserved between <li> elements in case someone sets their css to display:inline in which case <li></li><li></li> != <li></li> <li></li>

from htmlmin.

abuyoyo avatar abuyoyo commented on May 27, 2024

Ooh.
I was half-wrong.
<div><p>Text </div> is NOT the same as <div><p>Text</div>

from htmlmin.

abuyoyo avatar abuyoyo commented on May 27, 2024

So, in fact

<div>
    <p>Text</p>
</div>

should minify to <div><p>Text</div> and NOT to <div><p>Text </div> (which is the current implementation).

from htmlmin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.