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.
		
		
		
		
		
			
		
			
				
					
					
						
							44 lines
						
					
					
						
							885 B
						
					
					
				
			
		
		
	
	
							44 lines
						
					
					
						
							885 B
						
					
					
				| <?php | |
| /** | |
|  * @copyright Copyright (c) 2008 Yii Software LLC | |
|  * @link http://www.yiiframework.com/ | |
|  * @license http://www.yiiframework.com/license/ | |
|  */ | |
|  | |
| namespace yii\helpers; | |
|  | |
| use Michelf\MarkdownExtra; | |
|  | |
| /** | |
|  * BaseMarkdown provides concrete implementation for [[Markdown]]. | |
|  * | |
|  * Do not use BaseMarkdown. Use [[Markdown]] instead. | |
|  * | |
|  * @author Alexander Makarov <sam@rmcreative.ru> | |
|  * @since 2.0 | |
|  */ | |
| class BaseMarkdown | |
| { | |
| 	/** | |
| 	 * @var MarkdownExtra | |
| 	 */ | |
| 	protected static $markdown; | |
|  | |
| 	/** | |
| 	 * Converts markdown into HTML | |
| 	 * | |
| 	 * @param string $content | |
| 	 * @param array $config | |
| 	 * @return string | |
| 	 */ | |
| 	public static function process($content, $config = []) | |
| 	{ | |
| 		if (static::$markdown === null) { | |
| 			static::$markdown = new MarkdownExtra(); | |
| 		} | |
| 		foreach ($config as $name => $value) { | |
| 			static::$markdown->{$name} = $value; | |
| 		} | |
| 		return static::$markdown->transform($content); | |
| 	} | |
| }
 | |
| 
 |