@readme/markdown 10.2.12 → 11.1.0
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.d.ts +1 -0
- package/dist/main.js +3 -1
- package/dist/main.node.js +3 -1
- package/dist/main.node.js.map +1 -1
- package/dist/processor/transform/gemoji+.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10,3 +10,4 @@ export { compile, exports, hast, run, mdast, mdastV6, mdx, migrate, plain, remar
|
|
|
10
10
|
export { default as Owlmoji } from './lib/owlmoji';
|
|
11
11
|
export { Components, utils };
|
|
12
12
|
export { tailwindCompiler } from './utils/tailwind-compiler';
|
|
13
|
+
export { regex as gemojiRegex } from './processor/transform/gemoji+';
|
package/dist/main.js
CHANGED
|
@@ -8682,6 +8682,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
8682
8682
|
Owlmoji: () => (/* reexport */ Owlmoji),
|
|
8683
8683
|
compile: () => (/* reexport */ lib_compile),
|
|
8684
8684
|
exports: () => (/* reexport */ lib_exports),
|
|
8685
|
+
gemojiRegex: () => (/* reexport */ gemoji_regex),
|
|
8685
8686
|
hast: () => (/* reexport */ lib_hast),
|
|
8686
8687
|
mdast: () => (/* reexport */ lib_mdast),
|
|
8687
8688
|
mdastV6: () => (/* reexport */ lib_mdastV6),
|
|
@@ -66907,7 +66908,7 @@ class Owlmoji {
|
|
|
66907
66908
|
|
|
66908
66909
|
|
|
66909
66910
|
|
|
66910
|
-
const gemoji_regex =
|
|
66911
|
+
const gemoji_regex = /(?<=^|\s):(?<name>\+1|[-\w]+):/g;
|
|
66911
66912
|
const gemojiReplacer = (_, name) => {
|
|
66912
66913
|
switch (Owlmoji.kind(name)) {
|
|
66913
66914
|
case 'gemoji': {
|
|
@@ -87932,6 +87933,7 @@ const utils = {
|
|
|
87932
87933
|
|
|
87933
87934
|
|
|
87934
87935
|
|
|
87936
|
+
|
|
87935
87937
|
})();
|
|
87936
87938
|
|
|
87937
87939
|
/******/ return __webpack_exports__;
|
package/dist/main.node.js
CHANGED
|
@@ -16343,6 +16343,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
16343
16343
|
Owlmoji: () => (/* reexport */ Owlmoji),
|
|
16344
16344
|
compile: () => (/* reexport */ lib_compile),
|
|
16345
16345
|
exports: () => (/* reexport */ lib_exports),
|
|
16346
|
+
gemojiRegex: () => (/* reexport */ gemoji_regex),
|
|
16346
16347
|
hast: () => (/* reexport */ lib_hast),
|
|
16347
16348
|
mdast: () => (/* reexport */ lib_mdast),
|
|
16348
16349
|
mdastV6: () => (/* reexport */ lib_mdastV6),
|
|
@@ -87110,7 +87111,7 @@ class Owlmoji {
|
|
|
87110
87111
|
|
|
87111
87112
|
|
|
87112
87113
|
|
|
87113
|
-
const gemoji_regex =
|
|
87114
|
+
const gemoji_regex = /(?<=^|\s):(?<name>\+1|[-\w]+):/g;
|
|
87114
87115
|
const gemojiReplacer = (_, name) => {
|
|
87115
87116
|
switch (Owlmoji.kind(name)) {
|
|
87116
87117
|
case 'gemoji': {
|
|
@@ -108135,6 +108136,7 @@ const utils = {
|
|
|
108135
108136
|
|
|
108136
108137
|
|
|
108137
108138
|
|
|
108139
|
+
|
|
108138
108140
|
})();
|
|
108139
108141
|
|
|
108140
108142
|
module.exports = __webpack_exports__;
|