示例#1
0
 /**
  * Visit internal link.
  *
  * @param T_Text_InternalLink $node
  */
 function visitTextInternalLink(T_Text_InternalLink $node)
 {
     $escape = new T_Filter_Xhtml();
     $this->xhtml .= '<a href="' . $this->root_url->getUrl($escape) . $node->getUrl($escape) . '">';
     $this->xhtml .= $node->getContent($this->filter);
     $this->registerForPostMethod($node);
 }