mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-04 22:28:40 +08:00 
			
		
		
		
	* 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();
 | 
						|
});
 |