alimango
alimango

Reputation: 655

Loading Markdownify in CodeIgniter

I downloaded Markdownify from http://milianw.de/projects/markdownify/ and extracted it to my application/libraries/ directory.

I did a:

$this->load->library('markdownify');
echo $this->markdownify->parseString('<b>Test</b>');

But the output is the same html markup. It didn’t work. How do I get it working?

Upvotes: 0

Views: 709

Answers (1)

Jannie Theunissen
Jannie Theunissen

Reputation: 30164

Have you tried renaming it to markdownify_helper.php, place it in your application/helpers/ directory and loading it so:

$this->load->helper('markdownify');

Upvotes: 1

Related Questions