mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-05 19:28:39 +00:00
Reviewers: xymostech Reviewed By: xymostech Differential Revision: http://phabricator.benalpert.com/D38
11 lines
254 B
JavaScript
11 lines
254 B
JavaScript
window.onload = function() {
|
|
var input = document.getElementById("input");
|
|
var math = document.getElementById("math");
|
|
|
|
MJLite.process(input.value, math);
|
|
|
|
input.oninput = function() {
|
|
MJLite.process(input.value, math);
|
|
};
|
|
};
|