mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-31 03:50:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			311 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			311 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| class CodeHighlighter {
 | |
| 
 | |
|     constructor(elem) {
 | |
|         const codeBlocks = elem.querySelectorAll('pre');
 | |
|         if (codeBlocks.length > 0) {
 | |
|             window.importVersioned('code').then(Code => {
 | |
|                Code.highlightWithin(elem);
 | |
|             });
 | |
|         }
 | |
|     }
 | |
| 
 | |
| }
 | |
| 
 | |
| export default CodeHighlighter; |