Reputation: 1959
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
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