Browse Source

dist update

pull/731/head
Vitaly Puzrin 4 years ago
parent
commit
cb8d903979
  1. 4
      dist/markdown-it.js
  2. 4
      dist/markdown-it.min.js

4
dist/markdown-it.js

@ -1,4 +1,4 @@
/*! markdown-it 12.0.1 https://github.com/markdown-it/markdown-it @license MIT */
/*! markdown-it 12.0.2 https://github.com/markdown-it/markdown-it @license MIT */
(function(global, factory) {
typeof exports === "object" && typeof module !== "undefined" ? module.exports = factory() : typeof define === "function" && define.amd ? define(factory) : (global = typeof globalThis !== "undefined" ? globalThis : global || self,
global.markdownit = factory());
@ -4267,7 +4267,7 @@
// header row will define an amount of columns in the entire table,
// and align row should be exactly the same (the rest of the rows can differ)
columnCount = columns.length;
if (columnCount !== aligns.length) {
if (columnCount === 0 || columnCount !== aligns.length) {
return false;
}
if (silent) {

4
dist/markdown-it.min.js

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save