예제 #1
0
파일: Plugin.php 프로젝트: kalkin/solarphp
 /**
  * 
  * Encodes special Markdown characters to they are not parsed by
  * plugins.
  * 
  * @param string $text Source text.
  * 
  * @param bool $only_backslash Only encode backslashed characters.
  * 
  * @return string The encoded text.
  * 
  */
 protected function _encode($text, $only_backslash = false)
 {
     return $this->_markdown->encode($text, $only_backslash);
 }