Created
June 6, 2012 16:03
-
-
Save davidboy/2882895 to your computer and use it in GitHub Desktop.
markdown editor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$this->load->library('markdown'); | |
$html = $this->markdown->convert("some markdown code"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?= $this->load->view('partials/markdown-editor', array( | |
'field_name' => 'content', | |
'placeholder' => 'Content', | |
'default_content' => set_value('content', "some default text") | |
)) ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment