mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-29 16:09:29 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			615 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			615 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import MarkdownIt from 'markdown-it';
 | |
| import mdTasksLists from 'markdown-it-task-lists';
 | |
| 
 | |
| export class Markdown {
 | |
| 
 | |
|     constructor() {
 | |
|         this.renderer = new MarkdownIt({html: true});
 | |
|         this.renderer.use(mdTasksLists, {label: true});
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Get the front-end render used to convert markdown to HTML.
 | |
|      * @returns {MarkdownIt}
 | |
|      */
 | |
|     getRenderer() {
 | |
|         return this.renderer;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Convert the given Markdown to HTML.
 | |
|      * @param {String} markdown
 | |
|      * @returns {String}
 | |
|      */
 | |
|     render(markdown) {
 | |
|         return this.renderer.render(markdown);
 | |
|     }
 | |
| 
 | |
| }
 |