Files
figureslibres.cc/system/src/Grav/Common/Markdown/ParsedownExtra.php
T
2018-12-12 07:32:23 +01:00

29 lines
565 B
PHP

<?php
/**
* @package Grav.Common.Markdown
*
* @copyright Copyright (C) 2015 - 2018 Trilby Media, LLC. All rights reserved.
* @license MIT License; see LICENSE file for details.
*/
namespace Grav\Common\Markdown;
class ParsedownExtra extends \ParsedownExtra
{
use ParsedownGravTrait;
/**
* ParsedownExtra constructor.
*
* @param $page
* @param $defaults
* @throws \Exception
*/
public function __construct($page, $defaults)
{
parent::__construct();
$this->init($page, $defaults);
}
}