1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * @copyright Copyright (c) 2008 Yii Software LLC
- * @link http://www.yiiframework.com/
- * @license http://www.yiiframework.com/license/
- */
- namespace yii\helpers;
- /**
- * Markdown provides an ability to transform markdown into HTML.
- *
- * Basic usage is the following:
- *
- * ```php
- * $myHtml = Markdown::process($myText);
- * ```
- *
- * If you want to configure the parser:
- *
- * ```php
- * $myHtml = Markdown::process($myText, [
- * 'fn_id_prefix' => 'footnote_',
- * ]);
- * ```
- *
- * Note that in order to use this helper you need to install "michelf/php-markdown" Composer package.
- *
- * For more details please refer to [PHP Markdown library documentation](http://michelf.ca/projects/php-markdown/).
- * @author Alexander Makarov <[email protected]>
- * @since 2.0
- */
- class Markdown extends BaseMarkdown
- {
- }
|