Skip to content

Commit f4d341e

Browse files
committed
rake update[0.13.01]
1 parent 37f0404 commit f4d341e

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

lib/temml/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
module Temml
66
VERSION = '0.30.0'
7-
TEMML_VERSION = '0.12.02'
7+
TEMML_VERSION = '0.13.01'
88
end

vendor/temml/javascripts/temml.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3877,7 +3877,6 @@ var temml = (function () {
38773877
"\\iint": "\\dotsi",
38783878
"\\iiint": "\\dotsi",
38793879
"\\iiiint": "\\dotsi",
3880-
"\\idotsint": "\\dotsi",
38813880
// Symbols whose definition starts with \DOTSX:
38823881
"\\DOTSX": "\\dotsx"
38833882
};
@@ -3959,7 +3958,7 @@ var temml = (function () {
39593958
defineMacro("\\dotsb", "\\cdots");
39603959
defineMacro("\\dotsm", "\\cdots");
39613960
defineMacro("\\dotsi", "\\!\\cdots");
3962-
defineMacro("\\idotsint", "\\dotsi");
3961+
defineMacro("\\idotsint", "\\int\\!\\cdots\\!\\int");
39633962
// amsmath doesn't actually define \dotsx, but \dots followed by a macro
39643963
// starting with \DOTSX implies \dotso, and then \extra@ detects this case
39653964
// and forces the added `\,`.
@@ -11765,6 +11764,12 @@ var temml = (function () {
1176511764
result = this.parseFunction(breakOnTokenText, name) || this.parseSymbol();
1176611765
if (result == null && text[0] === "\\" &&
1176711766
!Object.prototype.hasOwnProperty.call(implicitCommands, text )) {
11767+
if (this.settings.throwOnError) {
11768+
throw new ParseError("Unsupported function name: " + text, firstToken);
11769+
}
11770+
// For people getting dyanamically rendered math, it's better to
11771+
// show the unsupported command in red rather than panicking for every
11772+
// partially written expression.
1176811773
result = this.formatUnsupportedCmd(text);
1176911774
this.consume();
1177011775
}
@@ -12150,7 +12155,7 @@ var temml = (function () {
1215012155
* https://mit-license.org/
1215112156
*/
1215212157

12153-
const version = "0.12.02";
12158+
const version = "0.13.01";
1215412159

1215512160
function postProcess(block) {
1215612161
const labelMap = {};

0 commit comments

Comments
 (0)