You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					34 lines
				
				724 B
			
		
		
			
		
	
	
					34 lines
				
				724 B
			| 
											13 years ago
										 | <?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
 | ||
| 
											13 years ago
										 |  * $myHtml = Markdown::process($myText);
 | ||
| 
											13 years ago
										 |  * ```
 | ||
|  |  *
 | ||
|  |  * If you want to configure the parser:
 | ||
|  |  *
 | ||
|  |  * ```php
 | ||
| 
											13 years ago
										 |  * $myHtml = Markdown::process($myText, array(
 | ||
| 
											13 years ago
										 |  *     'fn_id_prefix' => 'footnote_',
 | ||
|  |  * ));
 | ||
|  |  * ```
 | ||
|  |  *
 | ||
|  |  * For more details please refer to [PHP Markdown library documentation](http://michelf.ca/projects/php-markdown/).
 | ||
|  |  * @author Alexander Makarov <sam@rmcreative.ru>
 | ||
|  |  * @since 2.0
 | ||
|  |  */
 | ||
|  | class Markdown extends base\Markdown
 | ||
|  | {
 | ||
|  | }
 |