Esempio n. 1
0
 public function visit(NodeVisitorInterface $visitor)
 {
     $visitor->visitHorizontalRule($this);
 }
Esempio n. 2
0
 /**
  * Accept a visit from a node visitor.
  *
  * This method should instrument the visitor to handle this node correctly, and also pass it on to any child nodes.
  *
  * @param NodeVisitorInterface $visitor
  * @return void
  */
 public function visit(NodeVisitorInterface $visitor)
 {
     $visitor->visitString($this);
 }
Esempio n. 3
0
 public function visit(NodeVisitorInterface $visitor)
 {
     $visitor->visitHTMLBlock($this);
 }
Esempio n. 4
0
 public function visit(NodeVisitorInterface $visitor)
 {
     $visitor->enterParagraph($this);
     $visitor->leaveParagraph($this);
 }
Esempio n. 5
0
 /**
  * Accept a visit from a node visitor.
  *
  * This method should instrument the visitor to handle this node correctly, and also pass it on to any child nodes.
  *
  * @param NodeVisitorInterface $visitor
  * @return void
  */
 public function visit(NodeVisitorInterface $visitor)
 {
     $visitor->visitRawHTML($this);
 }
Esempio n. 6
0
 /**
  * Accept a visit from a node visitor.
  *
  * This method should instrument the visitor to handle this node correctly, and also pass it on to any child nodes.
  *
  * @param NodeVisitorInterface $visitor
  * @return void
  */
 public function visit(NodeVisitorInterface $visitor)
 {
     $visitor->visitImage($this);
 }
Esempio n. 7
0
 public function visit(NodeVisitorInterface $visitor)
 {
     $visitor->enterBlockquote($this);
     parent::visit($visitor);
     $visitor->leaveBlockquote($this);
 }
Esempio n. 8
0
 public function visit(NodeVisitorInterface $visitor)
 {
     $visitor->enterListBlock($this);
     parent::visit($visitor);
     $visitor->leaveListBlock($this);
 }
Esempio n. 9
0
 /**
  * Accept a visit from a node visitor.
  *
  * This method should instrument the visitor to handle this node correctly, and also pass it on to any child nodes.
  *
  * @param NodeVisitorInterface $visitor
  * @return void
  */
 public function visit(NodeVisitorInterface $visitor)
 {
     $visitor->visitEmphasis($this);
 }
Esempio n. 10
0
 /**
  * Accept a visit from a node visitor.
  *
  * This method should instrument the visitor to handle this node correctly, and also pass it on to any child nodes.
  *
  * @param NodeVisitorInterface $visitor
  * @return void
  */
 public function visit(NodeVisitorInterface $visitor)
 {
     $visitor->visitHardBreak($this);
 }