PHP code example of gremo / ciconia-bundle
1. Go to this page and download the library: Download gremo/ciconia-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
gremo / ciconia-bundle example snippets
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Gremo\CiconiaBundle\GremoCiconiaBundle(),
// ...
);
}
/** @var \Ciconia\Ciconia $ciconia */
$ciconia = $container->get('ciconia');
// Refer to kzykhys/Ciconia for examples
$html = $ciconia->render('Markdown is **awesome**');
// <p>Markdown is <em>awesome</em></p>