
Summary: Add an auto-render extension to render math on a page. It exposes a global function (maybe we should attach it to `katex`?) to render math in an element. It comes with a README on how to use it. Also, make `make build` build the minified file. Fixes #26 Test Plan: - Visit http://localhost:7936/contrib/auto-render/ - See that all of the math renders correctly - `make test` Reviewers: alpert, kevinb Reviewed By: kevinb Differential Revision: https://phabricator.khanacademy.org/D16620
218 lines
7.6 KiB
JavaScript
218 lines
7.6 KiB
JavaScript
var splitAtDelimiters = require("./splitAtDelimiters");
|
|
|
|
beforeEach(function() {
|
|
jasmine.addMatchers({
|
|
toSplitInto: function() {
|
|
return {
|
|
compare: function(actual, left, right, result) {
|
|
var message = {
|
|
pass: true,
|
|
message: "'" + actual + "' split correctly"
|
|
};
|
|
|
|
var startData = [{type: "text", data: actual}];
|
|
|
|
var split = splitAtDelimiters(startData, left, right, false);
|
|
|
|
if (split.length !== result.length) {
|
|
message.pass = false;
|
|
message.message = "Different number of splits: " +
|
|
split.length + " vs. " + result.length + " (" +
|
|
JSON.stringify(split) + " vs. " +
|
|
JSON.stringify(result) + ")";
|
|
return message;
|
|
}
|
|
|
|
for (var i = 0; i < split.length; i++) {
|
|
var real = split[i];
|
|
var correct = result[i];
|
|
|
|
var good = true;
|
|
|
|
if (real.type !== correct.type) {
|
|
good = false;
|
|
diff = "type";
|
|
} else if (real.data !== correct.data) {
|
|
good = false;
|
|
diff = "data";
|
|
} else if (real.display !== correct.display) {
|
|
good = false;
|
|
diff = "display";
|
|
}
|
|
|
|
if (!good) {
|
|
message.pass = false;
|
|
message.message = "Difference at split " +
|
|
(i + 1) + ": " + JSON.stringify(real) +
|
|
" vs. " + JSON.stringify(correct) +
|
|
" (" + diff + " differs)";
|
|
break;
|
|
}
|
|
}
|
|
|
|
return message;
|
|
}
|
|
};
|
|
}
|
|
});
|
|
});
|
|
|
|
describe("A delimiter splitter", function() {
|
|
it("doesn't split when there are no delimiters", function() {
|
|
expect("hello").toSplitInto("(", ")", [{type: "text", data: "hello"}]);
|
|
});
|
|
|
|
it("doesn't create a math node when there's only a left delimiter", function() {
|
|
expect("hello ( world").toSplitInto(
|
|
"(", ")",
|
|
[
|
|
{type: "text", data: "hello "},
|
|
{type: "text", data: "( world"}
|
|
]);
|
|
});
|
|
|
|
it("doesn't split when there's only a right delimiter", function() {
|
|
expect("hello ) world").toSplitInto(
|
|
"(", ")",
|
|
[
|
|
{type: "text", data: "hello ) world"}
|
|
]);
|
|
});
|
|
|
|
it("splits when there are both delimiters", function() {
|
|
expect("hello ( world ) boo").toSplitInto(
|
|
"(", ")",
|
|
[
|
|
{type: "text", data: "hello "},
|
|
{type: "math", data: " world ", display: false},
|
|
{type: "text", data: " boo"}
|
|
]);
|
|
});
|
|
|
|
it("splits on multi-character delimiters", function() {
|
|
expect("hello [[ world ]] boo").toSplitInto(
|
|
"[[", "]]",
|
|
[
|
|
{type: "text", data: "hello "},
|
|
{type: "math", data: " world ", display: false},
|
|
{type: "text", data: " boo"}
|
|
]);
|
|
});
|
|
|
|
it("splits mutliple times", function() {
|
|
expect("hello ( world ) boo ( more ) stuff").toSplitInto(
|
|
"(", ")",
|
|
[
|
|
{type: "text", data: "hello "},
|
|
{type: "math", data: " world ", display: false},
|
|
{type: "text", data: " boo "},
|
|
{type: "math", data: " more ", display: false},
|
|
{type: "text", data: " stuff"}
|
|
]);
|
|
});
|
|
|
|
it("leaves the ending when there's only a left delimiter", function() {
|
|
expect("hello ( world ) boo ( left").toSplitInto(
|
|
"(", ")",
|
|
[
|
|
{type: "text", data: "hello "},
|
|
{type: "math", data: " world ", display: false},
|
|
{type: "text", data: " boo "},
|
|
{type: "text", data: "( left"}
|
|
]);
|
|
});
|
|
|
|
it("doesn't split when close delimiters are in {}s", function() {
|
|
expect("hello ( world { ) } ) boo").toSplitInto(
|
|
"(", ")",
|
|
[
|
|
{type: "text", data: "hello "},
|
|
{type: "math", data: " world { ) } ", display: false},
|
|
{type: "text", data: " boo"}
|
|
]);
|
|
|
|
expect("hello ( world { { } ) } ) boo").toSplitInto(
|
|
"(", ")",
|
|
[
|
|
{type: "text", data: "hello "},
|
|
{type: "math", data: " world { { } ) } ", display: false},
|
|
{type: "text", data: " boo"}
|
|
]);
|
|
});
|
|
|
|
it("doesn't split at escaped delimiters", function() {
|
|
expect("hello ( world \\) ) boo").toSplitInto(
|
|
"(", ")",
|
|
[
|
|
{type: "text", data: "hello "},
|
|
{type: "math", data: " world \\) ", display: false},
|
|
{type: "text", data: " boo"}
|
|
]);
|
|
|
|
/* TODO(emily): make this work maybe?
|
|
expect("hello \\( ( world ) boo").toSplitInto(
|
|
"(", ")",
|
|
[
|
|
{type: "text", data: "hello \\( "},
|
|
{type: "math", data: " world ", display: false},
|
|
{type: "text", data: " boo"}
|
|
]);
|
|
*/
|
|
});
|
|
|
|
it("splits when the right and left delimiters are the same", function() {
|
|
expect("hello $ world $ boo").toSplitInto(
|
|
"$", "$",
|
|
[
|
|
{type: "text", data: "hello "},
|
|
{type: "math", data: " world ", display: false},
|
|
{type: "text", data: " boo"}
|
|
]);
|
|
});
|
|
|
|
it("remembers which delimiters are display-mode", function() {
|
|
var startData = [{type: "text", data: "hello ( world ) boo"}];
|
|
|
|
expect(splitAtDelimiters(startData, "(", ")", true)).toEqual(
|
|
[
|
|
{type: "text", data: "hello "},
|
|
{type: "math", data: " world ", display: true},
|
|
{type: "text", data: " boo"}
|
|
]);
|
|
});
|
|
|
|
it("works with more than one start datum", function() {
|
|
var startData = [
|
|
{type: "text", data: "hello ( world ) boo"},
|
|
{type: "math", data: "math", display: true},
|
|
{type: "text", data: "hello ( world ) boo"}
|
|
];
|
|
|
|
expect(splitAtDelimiters(startData, "(", ")", false)).toEqual(
|
|
[
|
|
{type: "text", data: "hello "},
|
|
{type: "math", data: " world ", display: false},
|
|
{type: "text", data: " boo"},
|
|
{type: "math", data: "math", display: true},
|
|
{type: "text", data: "hello "},
|
|
{type: "math", data: " world ", display: false},
|
|
{type: "text", data: " boo"}
|
|
]);
|
|
});
|
|
|
|
it("doesn't do splitting inside of math nodes", function() {
|
|
var startData = [
|
|
{type: "text", data: "hello ( world ) boo"},
|
|
{type: "math", data: "hello ( world ) boo", display: true}
|
|
];
|
|
|
|
expect(splitAtDelimiters(startData, "(", ")", false)).toEqual(
|
|
[
|
|
{type: "text", data: "hello "},
|
|
{type: "math", data: " world ", display: false},
|
|
{type: "text", data: " boo"},
|
|
{type: "math", data: "hello ( world ) boo", display: true}
|
|
]);
|
|
});
|
|
});
|