Skip to content
This repository has been archived by the owner on Nov 2, 2018. It is now read-only.

Commit

Permalink
Updated version number and fixed migration to michelf/php-markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
hassankhan committed Jan 24, 2014
1 parent 782f3b4 commit 2280800
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions library/Zepto/Zepto.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@

use Pimple;
use Whoops;
use Michelf\MarkdownExtra;

class Zepto {

const VERSION = '0.4';
/**
*
*/
const VERSION = '0.6';

public $container;

Expand Down Expand Up @@ -92,7 +96,7 @@ function ($container) {

$container['file_loader'] = $container->share(
function ($container) {
return new FileLoader\MarkdownLoader();
return new FileLoader\MarkdownLoader(new \Michelf\MarkdownExtra);
}
);

Expand Down

0 comments on commit 2280800

Please sign in to comment.