paquettg / php-html-parser

An HTML DOM parser. It allows you to manipulate HTML. Find tags on an HTML page with selectors just like jQuery.
MIT License
2.37k stars 461 forks source link

Adding a line break #275

Open aaharoni opened 3 years ago

aaharoni commented 3 years ago

Hi,

I want to add 2 script tags to my document, as follows: $_document->find("body")->addChild(new TextNode("")); $_document->find("body")->addChild(new TextNode(""));

it adds them both to the same line. How can I add them on separate lines?

Thanks

aaharoni commented 3 years ago

anyone?

danslo commented 3 years ago

Have you tried adding \n?

aaharoni commented 3 years ago

Hi, thanks. Yes, of course.. But it doesn't work.