Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想额外安装markdown,因为它有一些我喜欢的功能。但是,codeigniter 版本只使用正常的降价,我怎么能在 codeigniter 上使用额外的降价。
CodeIgniter 默认有降价吗?我刚下载了Markdown_extra.php,改名了Markdown_helper.php,放里面了application/helpers。
Markdown_extra.php
Markdown_helper.php
application/helpers
然后你只需要使用加载它$this->load->helper('markdown')并调用它Markdown($string)
$this->load->helper('markdown')
Markdown($string)