innerHtml() 추상적인 공개 메소드

Gets the inner html of this node.
abstract public innerHtml ( ) : string
리턴 string
예제 #1
0
 public function format(AbstractNode $node)
 {
     return new TextNode(Parsedown::instance()->setBreaksEnabled(true)->setMarkupEscaped(true)->text($node->innerHtml()));
 }