katex math rendering; fix broken 2477 delimiter, compatibility with external markdown #2559
This commit is contained in:
		| @@ -106,6 +106,16 @@ | |||||||
|                     </script> |                     </script> | ||||||
|                 </section> |                 </section> | ||||||
|  |  | ||||||
|  |                 <!-- Math --> | ||||||
|  |                 <section data-markdown> | ||||||
|  | 					## The Lorenz Equations | ||||||
|  | 					`\[\begin{aligned} | ||||||
|  | 					\dot{x} & = \sigma(y-x) \\ | ||||||
|  | 					\dot{y} & = \rho x - y - xz \\ | ||||||
|  | 					\dot{z} & = -\beta z + xy | ||||||
|  | 					\end{aligned} \]` | ||||||
|  |                 </section> | ||||||
|  |  | ||||||
|             </div> |             </div> | ||||||
| 		</div> | 		</div> | ||||||
|  |  | ||||||
| @@ -113,6 +123,7 @@ | |||||||
|         <script src="../plugin/markdown/markdown.js"></script> |         <script src="../plugin/markdown/markdown.js"></script> | ||||||
|         <script src="../plugin/highlight/highlight.js"></script> |         <script src="../plugin/highlight/highlight.js"></script> | ||||||
|         <script src="../plugin/notes/notes.js"></script> |         <script src="../plugin/notes/notes.js"></script> | ||||||
|  |         <script src="../plugin/math/math.js"></script> | ||||||
|  |  | ||||||
| 		<script> | 		<script> | ||||||
|  |  | ||||||
| @@ -122,7 +133,7 @@ | |||||||
| 				history: true, | 				history: true, | ||||||
| 				center: true, | 				center: true, | ||||||
|  |  | ||||||
| 				plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ] | 				plugins: [ RevealMarkdown, RevealHighlight, RevealNotes, RevealMath.KaTeX ] | ||||||
| 			}); | 			}); | ||||||
|  |  | ||||||
| 		</script> | 		</script> | ||||||
|   | |||||||
| @@ -31,6 +31,11 @@ Content 3.1 | |||||||
| Content 3.2 | Content 3.2 | ||||||
|  |  | ||||||
|  |  | ||||||
| ## External 3.3 | ## External 3.3 (Image) | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ## External 3.4 (Math) | ||||||
|  |  | ||||||
|  | `\[ J(\theta_0,\theta_1) = \sum_{i=0} \]` | ||||||
|   | |||||||
| @@ -11,8 +11,8 @@ export const KaTeX = () => { | |||||||
| 	let defaultOptions = { | 	let defaultOptions = { | ||||||
| 		version: 'latest', | 		version: 'latest', | ||||||
| 		delimiters: [ | 		delimiters: [ | ||||||
|  | 			{left: '$$', right: '$$', display: true}, // Note: $$ has to come before $ | ||||||
| 			{left: '$', right: '$', display: false}, | 			{left: '$', right: '$', display: false}, | ||||||
| 			{left: '$$', right: '$$', display: true}, |  | ||||||
| 			{left: '\\(', right: '\\)', display: false}, | 			{left: '\\(', right: '\\)', display: false}, | ||||||
| 			{left: '\\[', right: '\\]', display: true} | 			{left: '\\[', right: '\\]', display: true} | ||||||
| 		], | 		], | ||||||
| @@ -73,12 +73,21 @@ export const KaTeX = () => { | |||||||
| 			} | 			} | ||||||
| 			katexScripts.push(karUrl); | 			katexScripts.push(karUrl); | ||||||
|  |  | ||||||
|  | 			const renderMath = () => { | ||||||
|  | 				renderMathInElement(reveal.getSlidesElement(), katexOptions); | ||||||
|  | 				deck.layout(); | ||||||
|  | 			} | ||||||
|  |  | ||||||
| 			loadCss(cssUrl); | 			loadCss(cssUrl); | ||||||
|  |  | ||||||
| 			// For some reason dynamically loading with defer attribute doesn't result in the expected behavior, the below code does | 			// For some reason dynamically loading with defer attribute doesn't result in the expected behavior, the below code does | ||||||
| 			loadScripts(katexScripts).then(() => { | 			loadScripts(katexScripts).then(() => { | ||||||
| 				renderMathInElement(document.body, katexOptions); | 				if( deck.isReady() ) { | ||||||
| 				deck.layout(); | 					renderMath(); | ||||||
|  | 				} | ||||||
|  | 				else { | ||||||
|  | 					deck.on( 'ready', renderMath.bind( this ) ); | ||||||
|  | 				} | ||||||
| 			}); | 			}); | ||||||
|  |  | ||||||
| 		} | 		} | ||||||
|   | |||||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
		Reference in New Issue
	
	Block a user