mirror of
https://github.com/krahets/hello-algo.git
synced 2025-07-25 03:08:54 +08:00
Add the summary of chapter divide and conquer
Enable instant loading feature Fix the math rendering in mathjax.js
This commit is contained in:
10
docs/javascripts/katex.js
Normal file
10
docs/javascripts/katex.js
Normal file
@ -0,0 +1,10 @@
|
||||
document$.subscribe(({ body }) => {
|
||||
renderMathInElement(body, {
|
||||
delimiters: [
|
||||
{ left: "$$", right: "$$", display: true },
|
||||
{ left: "$", right: "$", display: false },
|
||||
{ left: "\\(", right: "\\)", display: false },
|
||||
{ left: "\\[", right: "\\]", display: true },
|
||||
],
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user