7777 The DomCrawler component will use it automatically when the content has
7878 an HTML5 doctype.
7979
80- ..versionadded ::4.3
81-
82- The automatic support of the html5-php library was introduced in Symfony 4.3.
83-
8480Node Filtering
8581~~~~~~~~~~~~~~
8682
@@ -216,10 +212,6 @@ Access the value of the first node of the current selection::
216212 // avoid the exception passing an argument that text() returns when node does not exist
217213 $message = $crawler->filterXPath('//body/p')->text('Default text content');
218214
219- ..versionadded ::4.3
220-
221- The default argument of ``text() `` was introduced in Symfony 4.3.
222-
223215Access the attribute value of the first node of the current selection::
224216
225217 $class = $crawler->filterXPath('//body/p')->attr('class');
@@ -236,10 +228,6 @@ Extract attribute and/or node values from the list of nodes::
236228 Special attribute ``_text `` represents a node value, while ``_name ``
237229 represents the element name (the HTML tag name).
238230
239- ..versionadded ::4.3
240-
241- The special attribute ``_name `` was introduced in Symfony 4.3.
242-
243231Call an anonymous function on each node of the list::
244232
245233 use Symfony\Component\DomCrawler\Crawler;
@@ -333,10 +321,6 @@ and :phpclass:`DOMNode` objects::
333321 // avoid the exception passing an argument that html() returns when node does not exist
334322 $html = $crawler->html('Default <strong>HTML</strong> content');
335323
336- ..versionadded ::4.3
337-
338- The default argument of ``html() `` was introduced in Symfony 4.3.
339-
340324Expression Evaluation
341325~~~~~~~~~~~~~~~~~~~~~
342326