@zzish/math-rich-input 0.1.19 → 0.1.20
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 +0 -1
- package/package.json +1 -1
- package/src/mathRichInputHelper.js +0 -2
package/dist/index.js
CHANGED
|
@@ -21020,7 +21020,6 @@ function elementToMarkedRawText(element) {
|
|
|
21020
21020
|
var raw_text = result.join(""); // remove any zero-width spaces we added to the html
|
|
21021
21021
|
|
|
21022
21022
|
raw_text = raw_text.replace(SMALL_SPACE_REG_EXP, '');
|
|
21023
|
-
console.log("Marked raw text: " + raw_text);
|
|
21024
21023
|
return raw_text;
|
|
21025
21024
|
}
|
|
21026
21025
|
function replaceMarksWithMath(markedRawText, latex) {
|
package/package.json
CHANGED
|
@@ -381,8 +381,6 @@ export function elementToMarkedRawText(element, nodeToMark=null, offset=0, useHt
|
|
|
381
381
|
// remove any zero-width spaces we added to the html
|
|
382
382
|
raw_text = raw_text.replace(SMALL_SPACE_REG_EXP,'')
|
|
383
383
|
|
|
384
|
-
console.log("Marked raw text: " + raw_text)
|
|
385
|
-
|
|
386
384
|
return raw_text
|
|
387
385
|
}
|
|
388
386
|
|