Пример #1
0
 /**
  * parse - Parses the code that has been loaded into the GeSHi instance
  * through loadDocument().
  *
  * @return string
  */
 public function parse()
 {
     // Codeblock header | Shows the language being used
     $return = "<div class='codeBlock codeBlockHeader'>Code Language: " . $this->_geshi->get_language_name() . '</div>';
     $return .= $this->_geshi->parse_code();
     // Parses code using the GeSHi instance
     return $return;
 }