helper = $helper; } public function getFilters() { return array( 'markdown' => new \Twig_Filter_Method($this, 'markdown', array('is_safe' => array('html'))), ); } public function markdown($txt) { return $this->helper->transform($txt); } public function getName() { return 'markdown'; } }