Skip to content

Instantly share code, notes, and snippets.

@davidboy
Created June 6, 2012 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidboy/2882895 to your computer and use it in GitHub Desktop.
Save davidboy/2882895 to your computer and use it in GitHub Desktop.
markdown editor
$this->load->library('markdown');
$html = $this->markdown->convert("some markdown code");
<?= $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