Luis Liz
Luis Liz

Reputation: 1959

How to implement Markdown Extra on Codeigniter?

I want to install markdown extra because it has some features I like. But, the codeigniter version only uses the normal markdown how can I use the markdown extra on codeigniter.

Upvotes: 0

Views: 476

Answers (1)

Robin Castlin
Robin Castlin

Reputation: 10996

CodeIgniter haves markdown by default? I just downloaded Markdown_extra.php, renamed it to Markdown_helper.php and put it inside application/helpers.

Then you only need to load it using $this->load->helper('markdown') and call it with Markdown($string)

Upvotes: 3

Related Questions