예제 #1
0
파일: Plugin.php 프로젝트: kalkin/solarphp
 /**
  * 
  * Escapes HTML in source text.
  * 
  * @param string $text Source text.
  * 
  * @param int $quotes A PHP entities constant, default ENT_COMPAT.
  * 
  * @return string The escaped text.
  * 
  */
 protected function _escape($text, $quotes = ENT_COMPAT)
 {
     return $this->_markdown->escape($text, $quotes);
 }