Show katex errors in HTML output if rendering fails
This commit is contained in:
parent
cd74447a2a
commit
d3402bcd30
4
main.css
4
main.css
|
@ -206,3 +206,7 @@ body {
|
||||||
.credits a {
|
.credits a {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.errorMessage {
|
||||||
|
color: red;
|
||||||
|
}
|
13
main.js
13
main.js
|
@ -8,7 +8,18 @@ window.startup = function() {
|
||||||
var demoOutput = document.getElementById("demo-output");
|
var demoOutput = document.getElementById("demo-output");
|
||||||
|
|
||||||
function doDemo() {
|
function doDemo() {
|
||||||
katex.render("\\displaystyle{" + demoInput.value + "}", demoOutput);
|
try {
|
||||||
|
katex.render("\\displaystyle{" + demoInput.value + "}", demoOutput);
|
||||||
|
} catch(err) {
|
||||||
|
while(demoOutput.lastChild) {
|
||||||
|
demoOutput.removeChild(demoOutput.lastChild);
|
||||||
|
}
|
||||||
|
var msg = document.createTextNode(err.message);
|
||||||
|
var span = document.createElement("span");
|
||||||
|
span.appendChild(msg);
|
||||||
|
demoOutput.appendChild(span);
|
||||||
|
span.setAttribute("class", "errorMessage");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
demoInput.addEventListener("input", function() {
|
demoInput.addEventListener("input", function() {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user