mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-31 03:50:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			382 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			382 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import {Component} from './component';
 | |
| 
 | |
| export class CodeHighlighter extends Component {
 | |
| 
 | |
|     setup() {
 | |
|         const container = this.$el;
 | |
| 
 | |
|         const codeBlocks = container.querySelectorAll('pre');
 | |
|         if (codeBlocks.length > 0) {
 | |
|             window.importVersioned('code').then(Code => {
 | |
|                 Code.highlightWithin(container);
 | |
|             });
 | |
|         }
 | |
|     }
 | |
| 
 | |
| }
 |