dev-master
9999999-dev http://philecms.comUse the Parsedown parser in Phile.
MIT
The Requires
by James Doyle
cms content phile
Use the Parsedown parser in Phile.
Use the Parsedown parser in Phile., (*1)
php composer.phar require phile/parsedown:*
plugins/phile/parsedown
After you have installed the plugin. You need to add the following line to your config.php
file:, (*2)
$config['plugins']['phile\\parsedown'] = array('active' => true);`
Then add the Parsedown dependency to your composer.json file:, (*3)
{ "require": { "erusev/parsedown": "*" // the parsedown parser } }
Now run your composer install
command as normal., (*4)
After you have installed the plugin. You need to add the following line to your config.php
file:, (*5)
$config['plugins'] = array( 'phile\\parserMarkdown' => array('active' => false), // disable the default parser 'phile\\parsedown' => array('active' => true) // use parsedown );
Use the Parsedown parser in Phile.
MIT
cms content phile