Skip to content

Commit

Permalink
Dist rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaly Puzrin committed Apr 22, 2022
1 parent 17c700c commit ea1bc93
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 18 deletions.
12 changes: 8 additions & 4 deletions dist/markdown-it-emoji-bare.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

/*! markdown-it-emoji 2.0.0 https://github.com/markdown-it/markdown-it-emoji @license MIT */
/*! markdown-it-emoji 2.0.2 https://github.com/markdown-it/markdown-it-emoji @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.markdownitEmoji = factory());
}(this, (function () { 'use strict';
})(this, (function () { 'use strict';

var render = function emoji_html(tokens, idx /*, options, env */) {
return tokens[idx].content;
Expand Down Expand Up @@ -170,9 +170,13 @@

md.renderer.rules.emoji = render;

md.core.ruler.push('emoji', replace(md, opts.defs, opts.shortcuts, opts.scanRE, opts.replaceRE));
md.core.ruler.after(
'linkify',
'emoji',
replace(md, opts.defs, opts.shortcuts, opts.scanRE, opts.replaceRE)
);
};

return bare;

})));
}));
4 changes: 2 additions & 2 deletions dist/markdown-it-emoji-bare.min.js

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

12 changes: 8 additions & 4 deletions dist/markdown-it-emoji-light.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

/*! markdown-it-emoji 2.0.0 https://github.com/markdown-it/markdown-it-emoji @license MIT */
/*! markdown-it-emoji 2.0.2 https://github.com/markdown-it/markdown-it-emoji @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.markdownitEmoji = factory());
}(this, (function () { 'use strict';
})(this, (function () { 'use strict';

var emojies_defs = {
grinning: "😀",
Expand Down Expand Up @@ -354,7 +354,11 @@

md.renderer.rules.emoji = render;

md.core.ruler.push('emoji', replace(md, opts.defs, opts.shortcuts, opts.scanRE, opts.replaceRE));
md.core.ruler.after(
'linkify',
'emoji',
replace(md, opts.defs, opts.shortcuts, opts.scanRE, opts.replaceRE)
);
};

var light = function emoji_plugin(md, options) {
Expand All @@ -371,4 +375,4 @@

return light;

})));
}));
4 changes: 2 additions & 2 deletions dist/markdown-it-emoji-light.min.js

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

12 changes: 8 additions & 4 deletions dist/markdown-it-emoji.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

/*! markdown-it-emoji 2.0.0 https://github.com/markdown-it/markdown-it-emoji @license MIT */
/*! markdown-it-emoji 2.0.2 https://github.com/markdown-it/markdown-it-emoji @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.markdownitEmoji = factory());
}(this, (function () { 'use strict';
})(this, (function () { 'use strict';

var emojies_defs = {
"100": "💯",
Expand Down Expand Up @@ -2042,7 +2042,11 @@

md.renderer.rules.emoji = render;

md.core.ruler.push('emoji', replace(md, opts.defs, opts.shortcuts, opts.scanRE, opts.replaceRE));
md.core.ruler.after(
'linkify',
'emoji',
replace(md, opts.defs, opts.shortcuts, opts.scanRE, opts.replaceRE)
);
};

var markdownItEmoji = function emoji_plugin(md, options) {
Expand All @@ -2059,4 +2063,4 @@

return markdownItEmoji;

})));
}));
4 changes: 2 additions & 2 deletions dist/markdown-it-emoji.min.js

Large diffs are not rendered by default.

0 comments on commit ea1bc93

Please sign in to comment.