temml 0.10.0 → 0.10.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/mathMLTree.js CHANGED
@@ -148,7 +148,7 @@ export class TextNode {
148
148
 
149
149
  /**
150
150
  * Converts the text node into a string
151
- * (representing the text iteself).
151
+ * (representing the text itself).
152
152
  */
153
153
  toText() {
154
154
  return this.text;
@@ -8,7 +8,7 @@
8
8
  * https://mit-license.org/
9
9
  */
10
10
 
11
- export const version = "0.10.0";
11
+ export const version = "0.10.3";
12
12
 
13
13
  export function postProcess(block) {
14
14
  const labelMap = {}
package/src/symbols.js CHANGED
@@ -85,7 +85,6 @@ defineSymbol(math, rel, "\u226a", "\\ll", true);
85
85
  defineSymbol(math, rel, "\u226b", "\\gg", true);
86
86
  defineSymbol(math, rel, "\u224d", "\\asymp", true);
87
87
  defineSymbol(math, rel, "\u2225", "\\parallel");
88
- defineSymbol(math, rel, "\u22c8", "\\bowtie", true);
89
88
  defineSymbol(math, rel, "\u2323", "\\smile", true);
90
89
  defineSymbol(math, rel, "\u2291", "\\sqsubseteq", true);
91
90
  defineSymbol(math, rel, "\u2292", "\\sqsupseteq", true);
@@ -402,7 +401,6 @@ defineSymbol(math, rel, "\u22d9", "\\gggtr");
402
401
  defineSymbol(math, bin, "\u22b2", "\\lhd");
403
402
  defineSymbol(math, bin, "\u22b3", "\\rhd");
404
403
  defineSymbol(math, rel, "\u2242", "\\eqsim", true);
405
- defineSymbol(math, rel, "\u22c8", "\\Join");
406
404
  defineSymbol(math, rel, "\u2251", "\\Doteq", true);
407
405
  defineSymbol(math, rel, "\u297d", "\\strictif", true);
408
406
  defineSymbol(math, rel, "\u297c", "\\strictfi", true);
@@ -428,6 +426,11 @@ defineSymbol(math, bin, "\u22ba", "\\intercal", true);
428
426
  defineSymbol(math, bin, "\u22d2", "\\doublecap");
429
427
  defineSymbol(math, bin, "\u22d3", "\\doublecup");
430
428
  defineSymbol(math, bin, "\u22a0", "\\boxtimes", true);
429
+ defineSymbol(math, bin, "\u22c8", "\\bowtie", true);
430
+ defineSymbol(math, bin, "\u22c8", "\\Join");
431
+ defineSymbol(math, bin, "\u27d5", "\\leftouterjoin", true);
432
+ defineSymbol(math, bin, "\u27d6", "\\rightouterjoin", true);
433
+ defineSymbol(math, bin, "\u27d7", "\\fullouterjoin", true);
431
434
 
432
435
  // AMS Arrows
433
436
  // Note: unicode-math maps \u21e2 to their own function \rightdasharrow.