mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-07 04:08:43 +00:00
fix: Support MathML \oiint and \oiiint (#2461)
* fix: Support MathML \oiint and \oiiint * Update direct input section of docs
This commit is contained in:
@@ -44,6 +44,11 @@ describe("A MathML builder", function() {
|
||||
expect(getMathML("\\displaystyle\\sum_a^b")).toMatchSnapshot();
|
||||
});
|
||||
|
||||
it('should use <msupsub> for integrals', () => {
|
||||
expect(getMathML("\\displaystyle\\int_a^b + " +
|
||||
"\\oiint_a^b + \\oiiint_a^b")).toMatchSnapshot();
|
||||
});
|
||||
|
||||
it('should use <msupsub> for regular operators', () => {
|
||||
expect(getMathML("\\textstyle\\sum_a^b")).toMatchSnapshot();
|
||||
});
|
||||
|
Reference in New Issue
Block a user