Skip to content

Commit

Permalink
Update version and regenerate compiled files
Browse files Browse the repository at this point in the history
  • Loading branch information
hmhealey committed Aug 26, 2024
1 parent 238f58c commit 91674fe
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions dist/commonmark.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* commonmark 0.30.1-2 https://github.com/commonmark/commonmark.js @license BSD3 */
/* commonmark 0.30.1-3 https://github.com/commonmark/commonmark.js @license BSD3 */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
Expand Down Expand Up @@ -14136,6 +14136,8 @@

var reTableRow = /^(\|?)(?:(?:\\\||[^|])*\|?)+$/;

var reValidTableDelimiter = /^:?-+:?$/;

var MAX_AUTOCOMPLETED_CELLS = 1000;

// Returns true if string contains only space characters.
Expand Down Expand Up @@ -14862,7 +14864,7 @@
}

const nextColumn = measureNonspaceColumn(parser.nextLine);
if (nextColumn - parser.column >= CODE_INDENT || parser.column - nextColumn >= CODE_INDENT) {
if (Math.abs(nextColumn - parser.column) >= CODE_INDENT) {
// the delimiter row must be on the same indentation level as the header row
return 0;
}
Expand Down Expand Up @@ -14946,7 +14948,6 @@
}
];

const reValidTableDelimiter = /^:?-+:?$/;
const parseDelimiterRow = function(row) {
if (row.indexOf("|") === -1) {
return null;
Expand Down
2 changes: 1 addition & 1 deletion dist/commonmark.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mattermost/commonmark",
"description": "the Mattermost fork of a strongly specified, highly compatible variant of Markdown",
"version": "0.30.1-2",
"version": "0.30.1-3",
"homepage": "https://commonmark.org",
"keywords": [
"markdown",
Expand Down

0 comments on commit 91674fe

Please sign in to comment.