示例#1
0
 /**
  * Renders content using the Textmark engine.
  *
  * @see Icybee\Modules\Editor.Editor::render()
  */
 public function render($content)
 {
     return \Textmark_Parser::parse($content);
 }
示例#2
0
 protected function process()
 {
     $contents = $this->request['contents'];
     $contents = \Textmark_Parser::parse($contents);
     return \Icybee\Kses::sanitizeComment($contents);
 }