catchup-library-web 1.8.0 → 1.9.0
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/dist/index.js
CHANGED
|
@@ -1183,7 +1183,7 @@ var constructInputWithSpecialExpressionList = (inputText) => {
|
|
|
1183
1183
|
const splittedUnderline = splittedBold[i].split("__");
|
|
1184
1184
|
for (let j = 0; j < splittedUnderline.length; j++) {
|
|
1185
1185
|
let isEquation = false;
|
|
1186
|
-
const splittedEquation = splittedUnderline[j].split("
|
|
1186
|
+
const splittedEquation = splittedUnderline[j].split("$$");
|
|
1187
1187
|
for (let k = 0; k < splittedEquation.length; k++) {
|
|
1188
1188
|
inputPartList.push({
|
|
1189
1189
|
value: splittedEquation[k],
|
package/dist/index.mjs
CHANGED
|
@@ -984,7 +984,7 @@ var constructInputWithSpecialExpressionList = (inputText) => {
|
|
|
984
984
|
const splittedUnderline = splittedBold[i].split("__");
|
|
985
985
|
for (let j = 0; j < splittedUnderline.length; j++) {
|
|
986
986
|
let isEquation = false;
|
|
987
|
-
const splittedEquation = splittedUnderline[j].split("
|
|
987
|
+
const splittedEquation = splittedUnderline[j].split("$$");
|
|
988
988
|
for (let k = 0; k < splittedEquation.length; k++) {
|
|
989
989
|
inputPartList.push({
|
|
990
990
|
value: splittedEquation[k],
|
package/package.json
CHANGED
|
@@ -179,7 +179,7 @@ export const constructInputWithSpecialExpressionList = (inputText: string) => {
|
|
|
179
179
|
const splittedUnderline = splittedBold[i].split("__");
|
|
180
180
|
for (let j = 0; j < splittedUnderline.length; j++) {
|
|
181
181
|
let isEquation = false;
|
|
182
|
-
const splittedEquation = splittedUnderline[j].split("
|
|
182
|
+
const splittedEquation = splittedUnderline[j].split("$$");
|
|
183
183
|
for (let k = 0; k < splittedEquation.length; k++) {
|
|
184
184
|
inputPartList.push({
|
|
185
185
|
value: splittedEquation[k],
|