Skip to content

Commit

Permalink
Adopting Parsedown Extra parser.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivantcholakov committed Jan 28, 2015
1 parent 3a8d53d commit ce43285
Show file tree
Hide file tree
Showing 9 changed files with 2,161 additions and 16 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ The technique of this hack is available, but it is not mandatory.
* Textile, A Humane Web Text Generator, http://textile.thresholdstate.com/, https://github.com/textile/php-textile
* Markdown Extra - A text-to-HTML conversion tool, http://michelf.com/projects/php-markdown/
* Markdownify - A HTML-to-text conversion tool, http://milianw.de/projects/markdownify/
* Parsedown - Better Markdown Parser in PHP - https://github.com/erusev/parsedown
* Parsedown Extra - An extension of Parsedown that adds support for Markdown Extra - https://github.com/erusev/parsedown-extra
* Mustache, Logic-less templates, https://github.com/bobthecow/mustache.php
* Less.php compiler, https://github.com/oyejorge/less.php
* PHPMailer, http://phpmailer.worxware.com/, https://github.com/PHPMailer/PHPMailer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function index() {

public function ssp() {

$readme = $this->load->view('datatables/README.md', null, true, array('markdown', 'auto_link'));
$readme = $this->load->view('datatables/README.md', null, true, array('markdown'));

$this->template
->title('DataTables with Server-Side Processing')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<?php

echo $this->parser->parse_string($content, null, true, array('markdown', 'auto_link'));
echo $this->parser->parse_string($content, null, true, array('markdown'));

?>

Expand Down
Loading

0 comments on commit ce43285

Please sign in to comment.