for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace allejo\stakx\Engines\Markdown;
use Aptoma\Twig\Extension\MarkdownEngineInterface;
class TwigMarkdownEngine implements MarkdownEngineInterface
{
protected $engine;
public function __construct ($instanceName = null)
$this->engine = MarkdownEngine::instance($instanceName);
}
/**
* {@inheritdoc}
*/
public function transform ($content)
return $this->engine->parse($content);
public function getName ()
return 'stakx/parsedown';