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.
気に入った機能がいくつかあるので、マークダウンを追加でインストールしたいと思います。ただし、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)