@khanacademy/simple-markdown
Advanced tools
Comparing version 0.0.0-PR1903-20241121224215 to 0.0.0-PR1903-20241127222031
@@ -5,6 +5,6 @@ import { addLibraryVersionToPerseusDebug } from '@khanacademy/perseus-core'; | ||
const libName = "@khanacademy/simple-markdown"; | ||
const libVersion = "0.13.4"; | ||
const libVersion = "0.13.5"; | ||
addLibraryVersionToPerseusDebug(libName, libVersion); | ||
/* eslint-disable prefer-spread, no-regex-spaces, @typescript-eslint/no-unused-vars, guard-for-in, no-console, no-var */ | ||
/* eslint-disable prefer-spread, no-regex-spaces, guard-for-in, no-console, no-var */ | ||
@@ -378,2 +378,5 @@ // Type Definitions: | ||
var TABLES = function () { | ||
// predefine regexes so we don't have to create them inside functions | ||
// sure, regex literals should be fast, even inside functions, but they | ||
// aren't in all browsers. | ||
var TABLE_ROW_SEPARATOR_TRIM = /^ *\| *| *\| *$/g; | ||
@@ -380,0 +383,0 @@ var TABLE_CELL_END_TRIM = / *$/; |
@@ -9,6 +9,6 @@ 'use strict'; | ||
const libName = "@khanacademy/simple-markdown"; | ||
const libVersion = "0.13.4"; | ||
const libVersion = "0.13.5"; | ||
perseusCore.addLibraryVersionToPerseusDebug(libName, libVersion); | ||
/* eslint-disable prefer-spread, no-regex-spaces, @typescript-eslint/no-unused-vars, guard-for-in, no-console, no-var */ | ||
/* eslint-disable prefer-spread, no-regex-spaces, guard-for-in, no-console, no-var */ | ||
@@ -382,2 +382,5 @@ // Type Definitions: | ||
var TABLES = function () { | ||
// predefine regexes so we don't have to create them inside functions | ||
// sure, regex literals should be fast, even inside functions, but they | ||
// aren't in all browsers. | ||
var TABLE_ROW_SEPARATOR_TRIM = /^ *\| *| *\| *$/g; | ||
@@ -384,0 +387,0 @@ var TABLE_CELL_END_TRIM = / *$/; |
@@ -6,3 +6,3 @@ { | ||
"license": "MIT", | ||
"version": "0.0.0-PR1903-20241121224215", | ||
"version": "0.0.0-PR1903-20241127222031", | ||
"publishConfig": { | ||
@@ -9,0 +9,0 @@ "access": "public" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
362397
2940