You are here

public function OutputRules::comment in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/masterminds/html5/src/HTML5/Serializer/OutputRules.php \Masterminds\HTML5\Serializer\OutputRules::comment()

Write a comment node.

Instead of returning the result write it to the output stream ($output) that was passed into the constructor.

Parameters

mixed $ele:

Overrides RulesInterface::comment

File

vendor/masterminds/html5/src/HTML5/Serializer/OutputRules.php, line 265
The rules for generating output in the serializer.

Class

OutputRules
Generate the output html5 based on element rules.

Namespace

Masterminds\HTML5\Serializer

Code

public function comment($ele) {

  // These produce identical output.
  // $this->wr('<!--')->wr($ele->data)->wr('-->');
  $this
    ->wr($ele->ownerDocument
    ->saveXML($ele));
}