mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-01 03:24:24 +08:00 
			
		
		
		
	 2e130d4bbc
			
		
	
	2e130d4bbc
	
	
	
		
			
			* Fix quick_sort.md * Disable instant loading for mathjax rendering * Fix the summary.md of chapter_sorting * Two bug fixes
		
			
				
	
	
		
			18 lines
		
	
	
		
			328 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			328 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| window.MathJax = {
 | |
|   tex: {
 | |
|     inlineMath: [["\\(", "\\)"]],
 | |
|     displayMath: [["\\[", "\\]"]],
 | |
|     processEscapes: true,
 | |
|     processEnvironments: true,
 | |
|   },
 | |
|   options: {
 | |
|     ignoreHtmlClass: ".*|",
 | |
|     processHtmlClass: "arithmatex",
 | |
|     enableMenu: false,
 | |
|   },
 | |
| };
 | |
| 
 | |
| document$.subscribe(() => {
 | |
|   MathJax.typesetPromise();
 | |
| });
 |