Use the Parsedown parser in Phile.
php composer.phar require phile/parsedown:*
- Install the latest version of Phile
- Clone or download this repo into
plugins/phile/parsedown
After you have installed the plugin. You need to add the following line to your config.php
file:
$config['plugins']['phile\\parsedown'] = array('active' => true);`
Then add the Parsedown dependency to your composer.json file:
{
"require": {
"erusev/parsedown": "*" // the parsedown parser
}
}
Now run your composer install
command as normal.
After you have installed the plugin. You need to add the following line to your config.php
file:
$config['plugins'] = array(
'phile\\parserMarkdown' => array('active' => false), // disable the default parser
'phile\\parsedown' => array('active' => true) // use parsedown
);
- Speed
- Consistency
- Github flavoured by default
- Tested in PHP 5.2, 5.3, 5.4 and 5.5
- Friendly to international input
- No table support
- Lack of settings and extensions