@readme/markdown 6.33.1-next.1 → 6.33.2
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/CHANGELOG.md +26 -0
- package/dist/main.js +175 -43
- package/dist/main.node.js +49 -9
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,32 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
===
|
|
3
3
|
|
|
4
|
+
## Version 6.33.2
|
|
5
|
+
|
|
6
|
+
### 🛠 Fixes & Updates
|
|
7
|
+
|
|
8
|
+
* include icon in callout to string ([#373](https://github.com/readmeio/markdown/issues/373)) ([208ddb5](https://github.com/readmeio/markdown/commit/208ddb5ece9f6069b49adf5717cbc50988895705))
|
|
9
|
+
* **deps-dev:** upgrading eslint to v8 ([#363](https://github.com/readmeio/markdown/issues/363)) ([431dcae](https://github.com/readmeio/markdown/commit/431dcaefb99c4885324c5be429b876fe0946a0ad))
|
|
10
|
+
|
|
11
|
+
## Version 6.33.2-next.2
|
|
12
|
+
|
|
13
|
+
### 🛠 Fixes & Updates
|
|
14
|
+
|
|
15
|
+
* include icon in callout to string ([#373](https://github.com/readmeio/markdown/issues/373)) ([208ddb5](https://github.com/readmeio/markdown/commit/208ddb5ece9f6069b49adf5717cbc50988895705))
|
|
16
|
+
|
|
17
|
+
## Version 6.33.2-next.1
|
|
18
|
+
|
|
19
|
+
### 🛠 Fixes & Updates
|
|
20
|
+
|
|
21
|
+
* **deps-dev:** upgrading eslint to v8 ([#363](https://github.com/readmeio/markdown/issues/363)) ([431dcae](https://github.com/readmeio/markdown/commit/431dcaefb99c4885324c5be429b876fe0946a0ad))
|
|
22
|
+
|
|
23
|
+
## Version 6.33.1
|
|
24
|
+
|
|
25
|
+
### 🛠 Fixes & Updates
|
|
26
|
+
|
|
27
|
+
* allow indented code on first line ([#362](https://github.com/readmeio/markdown/issues/362)) ([2b55c09](https://github.com/readmeio/markdown/commit/2b55c092e669ddf1488c792748f9c9775742e97d))
|
|
28
|
+
* trigger release ([00a259b](https://github.com/readmeio/markdown/commit/00a259b436b69a1b3c907c75bf9b9dae2486caaa))
|
|
29
|
+
|
|
4
30
|
## Version 6.33.1-next.1
|
|
5
31
|
|
|
6
32
|
### 🛠 Fixes & Updates
|
package/dist/main.js
CHANGED
|
@@ -25,6 +25,7 @@ function _arrayLikeToArray(arr, len) {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
module.exports = _arrayLikeToArray;
|
|
28
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
28
29
|
|
|
29
30
|
/***/ }),
|
|
30
31
|
|
|
@@ -36,6 +37,7 @@ function _arrayWithHoles(arr) {
|
|
|
36
37
|
}
|
|
37
38
|
|
|
38
39
|
module.exports = _arrayWithHoles;
|
|
40
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
39
41
|
|
|
40
42
|
/***/ }),
|
|
41
43
|
|
|
@@ -49,6 +51,7 @@ function _arrayWithoutHoles(arr) {
|
|
|
49
51
|
}
|
|
50
52
|
|
|
51
53
|
module.exports = _arrayWithoutHoles;
|
|
54
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
52
55
|
|
|
53
56
|
/***/ }),
|
|
54
57
|
|
|
@@ -64,6 +67,7 @@ function _assertThisInitialized(self) {
|
|
|
64
67
|
}
|
|
65
68
|
|
|
66
69
|
module.exports = _assertThisInitialized;
|
|
70
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
67
71
|
|
|
68
72
|
/***/ }),
|
|
69
73
|
|
|
@@ -77,6 +81,7 @@ function _classCallCheck(instance, Constructor) {
|
|
|
77
81
|
}
|
|
78
82
|
|
|
79
83
|
module.exports = _classCallCheck;
|
|
84
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
80
85
|
|
|
81
86
|
/***/ }),
|
|
82
87
|
|
|
@@ -100,6 +105,7 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
100
105
|
}
|
|
101
106
|
|
|
102
107
|
module.exports = _createClass;
|
|
108
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
103
109
|
|
|
104
110
|
/***/ }),
|
|
105
111
|
|
|
@@ -122,6 +128,7 @@ function _defineProperty(obj, key, value) {
|
|
|
122
128
|
}
|
|
123
129
|
|
|
124
130
|
module.exports = _defineProperty;
|
|
131
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
125
132
|
|
|
126
133
|
/***/ }),
|
|
127
134
|
|
|
@@ -143,10 +150,12 @@ function _extends() {
|
|
|
143
150
|
return target;
|
|
144
151
|
};
|
|
145
152
|
|
|
153
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
146
154
|
return _extends.apply(this, arguments);
|
|
147
155
|
}
|
|
148
156
|
|
|
149
157
|
module.exports = _extends;
|
|
158
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
150
159
|
|
|
151
160
|
/***/ }),
|
|
152
161
|
|
|
@@ -155,9 +164,10 @@ module.exports = _extends;
|
|
|
155
164
|
|
|
156
165
|
var superPropBase = __webpack_require__(8331);
|
|
157
166
|
|
|
158
|
-
function _get(
|
|
167
|
+
function _get() {
|
|
159
168
|
if (typeof Reflect !== "undefined" && Reflect.get) {
|
|
160
169
|
module.exports = _get = Reflect.get;
|
|
170
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
161
171
|
} else {
|
|
162
172
|
module.exports = _get = function _get(target, property, receiver) {
|
|
163
173
|
var base = superPropBase(target, property);
|
|
@@ -165,17 +175,20 @@ function _get(target, property, receiver) {
|
|
|
165
175
|
var desc = Object.getOwnPropertyDescriptor(base, property);
|
|
166
176
|
|
|
167
177
|
if (desc.get) {
|
|
168
|
-
return desc.get.call(receiver);
|
|
178
|
+
return desc.get.call(arguments.length < 3 ? target : receiver);
|
|
169
179
|
}
|
|
170
180
|
|
|
171
181
|
return desc.value;
|
|
172
182
|
};
|
|
183
|
+
|
|
184
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
173
185
|
}
|
|
174
186
|
|
|
175
|
-
return _get(
|
|
187
|
+
return _get.apply(this, arguments);
|
|
176
188
|
}
|
|
177
189
|
|
|
178
190
|
module.exports = _get;
|
|
191
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
179
192
|
|
|
180
193
|
/***/ }),
|
|
181
194
|
|
|
@@ -186,10 +199,12 @@ function _getPrototypeOf(o) {
|
|
|
186
199
|
module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
187
200
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
188
201
|
};
|
|
202
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
189
203
|
return _getPrototypeOf(o);
|
|
190
204
|
}
|
|
191
205
|
|
|
192
206
|
module.exports = _getPrototypeOf;
|
|
207
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
193
208
|
|
|
194
209
|
/***/ }),
|
|
195
210
|
|
|
@@ -214,6 +229,7 @@ function _inherits(subClass, superClass) {
|
|
|
214
229
|
}
|
|
215
230
|
|
|
216
231
|
module.exports = _inherits;
|
|
232
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
217
233
|
|
|
218
234
|
/***/ }),
|
|
219
235
|
|
|
@@ -221,10 +237,11 @@ module.exports = _inherits;
|
|
|
221
237
|
/***/ ((module) => {
|
|
222
238
|
|
|
223
239
|
function _iterableToArray(iter) {
|
|
224
|
-
if (typeof Symbol !== "undefined" && Symbol.iterator
|
|
240
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
225
241
|
}
|
|
226
242
|
|
|
227
243
|
module.exports = _iterableToArray;
|
|
244
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
228
245
|
|
|
229
246
|
/***/ }),
|
|
230
247
|
|
|
@@ -232,14 +249,17 @@ module.exports = _iterableToArray;
|
|
|
232
249
|
/***/ ((module) => {
|
|
233
250
|
|
|
234
251
|
function _iterableToArrayLimit(arr, i) {
|
|
235
|
-
|
|
252
|
+
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
253
|
+
|
|
254
|
+
if (_i == null) return;
|
|
236
255
|
var _arr = [];
|
|
237
256
|
var _n = true;
|
|
238
257
|
var _d = false;
|
|
239
|
-
|
|
258
|
+
|
|
259
|
+
var _s, _e;
|
|
240
260
|
|
|
241
261
|
try {
|
|
242
|
-
for (
|
|
262
|
+
for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {
|
|
243
263
|
_arr.push(_s.value);
|
|
244
264
|
|
|
245
265
|
if (i && _arr.length === i) break;
|
|
@@ -259,6 +279,7 @@ function _iterableToArrayLimit(arr, i) {
|
|
|
259
279
|
}
|
|
260
280
|
|
|
261
281
|
module.exports = _iterableToArrayLimit;
|
|
282
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
262
283
|
|
|
263
284
|
/***/ }),
|
|
264
285
|
|
|
@@ -270,6 +291,7 @@ function _nonIterableRest() {
|
|
|
270
291
|
}
|
|
271
292
|
|
|
272
293
|
module.exports = _nonIterableRest;
|
|
294
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
273
295
|
|
|
274
296
|
/***/ }),
|
|
275
297
|
|
|
@@ -281,6 +303,7 @@ function _nonIterableSpread() {
|
|
|
281
303
|
}
|
|
282
304
|
|
|
283
305
|
module.exports = _nonIterableSpread;
|
|
306
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
284
307
|
|
|
285
308
|
/***/ }),
|
|
286
309
|
|
|
@@ -309,6 +332,7 @@ function _objectWithoutProperties(source, excluded) {
|
|
|
309
332
|
}
|
|
310
333
|
|
|
311
334
|
module.exports = _objectWithoutProperties;
|
|
335
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
312
336
|
|
|
313
337
|
/***/ }),
|
|
314
338
|
|
|
@@ -331,25 +355,29 @@ function _objectWithoutPropertiesLoose(source, excluded) {
|
|
|
331
355
|
}
|
|
332
356
|
|
|
333
357
|
module.exports = _objectWithoutPropertiesLoose;
|
|
358
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
334
359
|
|
|
335
360
|
/***/ }),
|
|
336
361
|
|
|
337
362
|
/***/ 8585:
|
|
338
363
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
339
364
|
|
|
340
|
-
var _typeof = __webpack_require__(8);
|
|
365
|
+
var _typeof = __webpack_require__(8)["default"];
|
|
341
366
|
|
|
342
367
|
var assertThisInitialized = __webpack_require__(1506);
|
|
343
368
|
|
|
344
369
|
function _possibleConstructorReturn(self, call) {
|
|
345
370
|
if (call && (_typeof(call) === "object" || typeof call === "function")) {
|
|
346
371
|
return call;
|
|
372
|
+
} else if (call !== void 0) {
|
|
373
|
+
throw new TypeError("Derived constructors may only return object or undefined");
|
|
347
374
|
}
|
|
348
375
|
|
|
349
376
|
return assertThisInitialized(self);
|
|
350
377
|
}
|
|
351
378
|
|
|
352
379
|
module.exports = _possibleConstructorReturn;
|
|
380
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
353
381
|
|
|
354
382
|
/***/ }),
|
|
355
383
|
|
|
@@ -362,10 +390,12 @@ function _setPrototypeOf(o, p) {
|
|
|
362
390
|
return o;
|
|
363
391
|
};
|
|
364
392
|
|
|
393
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
365
394
|
return _setPrototypeOf(o, p);
|
|
366
395
|
}
|
|
367
396
|
|
|
368
397
|
module.exports = _setPrototypeOf;
|
|
398
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
369
399
|
|
|
370
400
|
/***/ }),
|
|
371
401
|
|
|
@@ -385,6 +415,7 @@ function _slicedToArray(arr, i) {
|
|
|
385
415
|
}
|
|
386
416
|
|
|
387
417
|
module.exports = _slicedToArray;
|
|
418
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
388
419
|
|
|
389
420
|
/***/ }),
|
|
390
421
|
|
|
@@ -403,6 +434,7 @@ function _superPropBase(object, property) {
|
|
|
403
434
|
}
|
|
404
435
|
|
|
405
436
|
module.exports = _superPropBase;
|
|
437
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
406
438
|
|
|
407
439
|
/***/ }),
|
|
408
440
|
|
|
@@ -422,6 +454,7 @@ function _toArray(arr) {
|
|
|
422
454
|
}
|
|
423
455
|
|
|
424
456
|
module.exports = _toArray;
|
|
457
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
425
458
|
|
|
426
459
|
/***/ }),
|
|
427
460
|
|
|
@@ -441,6 +474,7 @@ function _toConsumableArray(arr) {
|
|
|
441
474
|
}
|
|
442
475
|
|
|
443
476
|
module.exports = _toConsumableArray;
|
|
477
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
444
478
|
|
|
445
479
|
/***/ }),
|
|
446
480
|
|
|
@@ -454,16 +488,21 @@ function _typeof(obj) {
|
|
|
454
488
|
module.exports = _typeof = function _typeof(obj) {
|
|
455
489
|
return typeof obj;
|
|
456
490
|
};
|
|
491
|
+
|
|
492
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
457
493
|
} else {
|
|
458
494
|
module.exports = _typeof = function _typeof(obj) {
|
|
459
495
|
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
460
496
|
};
|
|
497
|
+
|
|
498
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
461
499
|
}
|
|
462
500
|
|
|
463
501
|
return _typeof(obj);
|
|
464
502
|
}
|
|
465
503
|
|
|
466
504
|
module.exports = _typeof;
|
|
505
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
467
506
|
|
|
468
507
|
/***/ }),
|
|
469
508
|
|
|
@@ -482,6 +521,7 @@ function _unsupportedIterableToArray(o, minLen) {
|
|
|
482
521
|
}
|
|
483
522
|
|
|
484
523
|
module.exports = _unsupportedIterableToArray;
|
|
524
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
485
525
|
|
|
486
526
|
/***/ }),
|
|
487
527
|
|
|
@@ -27737,13 +27777,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27737
27777
|
/* harmony export */ "options": () => (/* binding */ options),
|
|
27738
27778
|
/* harmony export */ "parseOptions": () => (/* binding */ parseOptions)
|
|
27739
27779
|
/* harmony export */ });
|
|
27740
|
-
/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
27741
|
-
/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__);
|
|
27780
|
+
/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(4942);
|
|
27742
27781
|
|
|
27743
27782
|
|
|
27744
27783
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
27745
27784
|
|
|
27746
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) {
|
|
27785
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0,_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
27747
27786
|
|
|
27748
27787
|
var options = {
|
|
27749
27788
|
compatibilityMode: false,
|
|
@@ -27832,7 +27871,7 @@ module.exports = function CalloutCompiler() {
|
|
|
27832
27871
|
|
|
27833
27872
|
visitors['rdme-callout'] = function compile(node) {
|
|
27834
27873
|
var block = this.block(node).replace(/\n/g, '\n> ');
|
|
27835
|
-
block = "> ".concat(block);
|
|
27874
|
+
block = "> ".concat(node.data.hProperties.icon, " ").concat(block);
|
|
27836
27875
|
return block;
|
|
27837
27876
|
};
|
|
27838
27877
|
};
|
|
@@ -49588,6 +49627,30 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__4466__;
|
|
|
49588
49627
|
|
|
49589
49628
|
/***/ }),
|
|
49590
49629
|
|
|
49630
|
+
/***/ 4942:
|
|
49631
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
49632
|
+
|
|
49633
|
+
"use strict";
|
|
49634
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
49635
|
+
/* harmony export */ "Z": () => (/* binding */ _defineProperty)
|
|
49636
|
+
/* harmony export */ });
|
|
49637
|
+
function _defineProperty(obj, key, value) {
|
|
49638
|
+
if (key in obj) {
|
|
49639
|
+
Object.defineProperty(obj, key, {
|
|
49640
|
+
value: value,
|
|
49641
|
+
enumerable: true,
|
|
49642
|
+
configurable: true,
|
|
49643
|
+
writable: true
|
|
49644
|
+
});
|
|
49645
|
+
} else {
|
|
49646
|
+
obj[key] = value;
|
|
49647
|
+
}
|
|
49648
|
+
|
|
49649
|
+
return obj;
|
|
49650
|
+
}
|
|
49651
|
+
|
|
49652
|
+
/***/ }),
|
|
49653
|
+
|
|
49591
49654
|
/***/ 2781:
|
|
49592
49655
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
49593
49656
|
|
|
@@ -51410,33 +51473,102 @@ var __webpack_exports__ = {};
|
|
|
51410
51473
|
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
|
|
51411
51474
|
(() => {
|
|
51412
51475
|
"use strict";
|
|
51476
|
+
// ESM COMPAT FLAG
|
|
51413
51477
|
__webpack_require__.r(__webpack_exports__);
|
|
51414
|
-
|
|
51415
|
-
|
|
51416
|
-
|
|
51417
|
-
|
|
51418
|
-
|
|
51419
|
-
|
|
51420
|
-
|
|
51421
|
-
|
|
51422
|
-
|
|
51423
|
-
|
|
51424
|
-
|
|
51425
|
-
|
|
51426
|
-
|
|
51427
|
-
|
|
51428
|
-
|
|
51429
|
-
/*
|
|
51430
|
-
|
|
51431
|
-
|
|
51432
|
-
|
|
51433
|
-
|
|
51478
|
+
|
|
51479
|
+
// EXPORTS
|
|
51480
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
51481
|
+
"Components": () => (/* binding */ Components),
|
|
51482
|
+
"astToPlainText": () => (/* binding */ astToPlainText),
|
|
51483
|
+
"default": () => (/* binding */ index),
|
|
51484
|
+
"hast": () => (/* binding */ hast),
|
|
51485
|
+
"html": () => (/* binding */ html),
|
|
51486
|
+
"md": () => (/* binding */ md),
|
|
51487
|
+
"mdast": () => (/* binding */ mdast),
|
|
51488
|
+
"plain": () => (/* binding */ plain),
|
|
51489
|
+
"processor": () => (/* binding */ processor),
|
|
51490
|
+
"react": () => (/* binding */ react),
|
|
51491
|
+
"reactProcessor": () => (/* binding */ reactProcessor),
|
|
51492
|
+
"reactTOC": () => (/* binding */ reactTOC),
|
|
51493
|
+
"setup": () => (/* binding */ setup),
|
|
51494
|
+
"utils": () => (/* binding */ utils)
|
|
51495
|
+
});
|
|
51496
|
+
|
|
51497
|
+
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
51498
|
+
var defineProperty = __webpack_require__(4942);
|
|
51499
|
+
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js
|
|
51500
|
+
function _arrayWithHoles(arr) {
|
|
51501
|
+
if (Array.isArray(arr)) return arr;
|
|
51502
|
+
}
|
|
51503
|
+
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js
|
|
51504
|
+
function _iterableToArrayLimit(arr, i) {
|
|
51505
|
+
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
51506
|
+
|
|
51507
|
+
if (_i == null) return;
|
|
51508
|
+
var _arr = [];
|
|
51509
|
+
var _n = true;
|
|
51510
|
+
var _d = false;
|
|
51511
|
+
|
|
51512
|
+
var _s, _e;
|
|
51513
|
+
|
|
51514
|
+
try {
|
|
51515
|
+
for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {
|
|
51516
|
+
_arr.push(_s.value);
|
|
51517
|
+
|
|
51518
|
+
if (i && _arr.length === i) break;
|
|
51519
|
+
}
|
|
51520
|
+
} catch (err) {
|
|
51521
|
+
_d = true;
|
|
51522
|
+
_e = err;
|
|
51523
|
+
} finally {
|
|
51524
|
+
try {
|
|
51525
|
+
if (!_n && _i["return"] != null) _i["return"]();
|
|
51526
|
+
} finally {
|
|
51527
|
+
if (_d) throw _e;
|
|
51528
|
+
}
|
|
51529
|
+
}
|
|
51530
|
+
|
|
51531
|
+
return _arr;
|
|
51532
|
+
}
|
|
51533
|
+
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js
|
|
51534
|
+
function _arrayLikeToArray(arr, len) {
|
|
51535
|
+
if (len == null || len > arr.length) len = arr.length;
|
|
51536
|
+
|
|
51537
|
+
for (var i = 0, arr2 = new Array(len); i < len; i++) {
|
|
51538
|
+
arr2[i] = arr[i];
|
|
51539
|
+
}
|
|
51540
|
+
|
|
51541
|
+
return arr2;
|
|
51542
|
+
}
|
|
51543
|
+
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js
|
|
51544
|
+
|
|
51545
|
+
function _unsupportedIterableToArray(o, minLen) {
|
|
51546
|
+
if (!o) return;
|
|
51547
|
+
if (typeof o === "string") return _arrayLikeToArray(o, minLen);
|
|
51548
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
51549
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
51550
|
+
if (n === "Map" || n === "Set") return Array.from(o);
|
|
51551
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
|
|
51552
|
+
}
|
|
51553
|
+
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/nonIterableRest.js
|
|
51554
|
+
function _nonIterableRest() {
|
|
51555
|
+
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
51556
|
+
}
|
|
51557
|
+
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js
|
|
51558
|
+
|
|
51559
|
+
|
|
51560
|
+
|
|
51561
|
+
|
|
51562
|
+
function _slicedToArray(arr, i) {
|
|
51563
|
+
return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
|
|
51564
|
+
}
|
|
51565
|
+
;// CONCATENATED MODULE: ./index.js
|
|
51434
51566
|
|
|
51435
51567
|
|
|
51436
51568
|
|
|
51437
51569
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
51438
51570
|
|
|
51439
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) {
|
|
51571
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0,defineProperty/* default */.Z)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
51440
51572
|
|
|
51441
51573
|
/* eslint-disable no-param-reassign */
|
|
51442
51574
|
__webpack_require__(2787);
|
|
@@ -51593,7 +51725,7 @@ function plain(text) {
|
|
|
51593
51725
|
|
|
51594
51726
|
var _setup = setup(text, opts);
|
|
51595
51727
|
|
|
51596
|
-
var _setup2 =
|
|
51728
|
+
var _setup2 = _slicedToArray(_setup, 2);
|
|
51597
51729
|
|
|
51598
51730
|
text = _setup2[0];
|
|
51599
51731
|
opts = _setup2[1];
|
|
@@ -51650,14 +51782,14 @@ function react(content) {
|
|
|
51650
51782
|
if (!content) return null;else if (typeof content === 'string') {
|
|
51651
51783
|
var _setup3 = setup(content, opts);
|
|
51652
51784
|
|
|
51653
|
-
var _setup4 =
|
|
51785
|
+
var _setup4 = _slicedToArray(_setup3, 2);
|
|
51654
51786
|
|
|
51655
51787
|
content = _setup4[0];
|
|
51656
51788
|
opts = _setup4[1];
|
|
51657
51789
|
} else {
|
|
51658
51790
|
var _setup5 = setup('', opts);
|
|
51659
51791
|
|
|
51660
|
-
var _setup6 =
|
|
51792
|
+
var _setup6 = _slicedToArray(_setup5, 2);
|
|
51661
51793
|
|
|
51662
51794
|
opts = _setup6[1];
|
|
51663
51795
|
}
|
|
@@ -51671,7 +51803,7 @@ function reactTOC(tree) {
|
|
|
51671
51803
|
|
|
51672
51804
|
var _setup7 = setup('', opts);
|
|
51673
51805
|
|
|
51674
|
-
var _setup8 =
|
|
51806
|
+
var _setup8 = _slicedToArray(_setup7, 2);
|
|
51675
51807
|
|
|
51676
51808
|
opts = _setup8[1];
|
|
51677
51809
|
var proc = processor(opts).use(rehypeReact, {
|
|
@@ -51708,7 +51840,7 @@ function html(text) {
|
|
|
51708
51840
|
|
|
51709
51841
|
var _setup9 = setup(text, opts);
|
|
51710
51842
|
|
|
51711
|
-
var _setup10 =
|
|
51843
|
+
var _setup10 = _slicedToArray(_setup9, 2);
|
|
51712
51844
|
|
|
51713
51845
|
text = _setup10[0];
|
|
51714
51846
|
opts = _setup10[1];
|
|
@@ -51724,7 +51856,7 @@ function hast(text) {
|
|
|
51724
51856
|
|
|
51725
51857
|
var _setup11 = setup(text, opts);
|
|
51726
51858
|
|
|
51727
|
-
var _setup12 =
|
|
51859
|
+
var _setup12 = _slicedToArray(_setup11, 2);
|
|
51728
51860
|
|
|
51729
51861
|
text = _setup12[0];
|
|
51730
51862
|
opts = _setup12[1];
|
|
@@ -51742,7 +51874,7 @@ function mdast(text) {
|
|
|
51742
51874
|
|
|
51743
51875
|
var _setup13 = setup(text, opts);
|
|
51744
51876
|
|
|
51745
|
-
var _setup14 =
|
|
51877
|
+
var _setup14 = _slicedToArray(_setup13, 2);
|
|
51746
51878
|
|
|
51747
51879
|
text = _setup14[0];
|
|
51748
51880
|
opts = _setup14[1];
|
|
@@ -51758,7 +51890,7 @@ function astToPlainText(node) {
|
|
|
51758
51890
|
|
|
51759
51891
|
var _setup15 = setup('', opts);
|
|
51760
51892
|
|
|
51761
|
-
var _setup16 =
|
|
51893
|
+
var _setup16 = _slicedToArray(_setup15, 2);
|
|
51762
51894
|
|
|
51763
51895
|
opts = _setup16[1];
|
|
51764
51896
|
return processor(opts).use(toPlainText).runSync(node);
|
|
@@ -51773,7 +51905,7 @@ function md(tree) {
|
|
|
51773
51905
|
|
|
51774
51906
|
var _setup17 = setup('', opts);
|
|
51775
51907
|
|
|
51776
|
-
var _setup18 =
|
|
51908
|
+
var _setup18 = _slicedToArray(_setup17, 2);
|
|
51777
51909
|
|
|
51778
51910
|
opts = _setup18[1];
|
|
51779
51911
|
return processor(opts).use(remarkStringify, opts.markdownOptions).use(customCompilers).stringify(tree);
|
|
@@ -51784,7 +51916,7 @@ var ReadMeMarkdown = function ReadMeMarkdown(text) {
|
|
|
51784
51916
|
return react(text, opts);
|
|
51785
51917
|
};
|
|
51786
51918
|
|
|
51787
|
-
/* harmony default export */ const
|
|
51919
|
+
/* harmony default export */ const index = (ReadMeMarkdown);
|
|
51788
51920
|
})();
|
|
51789
51921
|
|
|
51790
51922
|
/******/ return __webpack_exports__;
|
package/dist/main.node.js
CHANGED
|
@@ -25,6 +25,7 @@ function _arrayLikeToArray(arr, len) {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
module.exports = _arrayLikeToArray;
|
|
28
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
28
29
|
|
|
29
30
|
/***/ }),
|
|
30
31
|
|
|
@@ -36,6 +37,7 @@ function _arrayWithHoles(arr) {
|
|
|
36
37
|
}
|
|
37
38
|
|
|
38
39
|
module.exports = _arrayWithHoles;
|
|
40
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
39
41
|
|
|
40
42
|
/***/ }),
|
|
41
43
|
|
|
@@ -49,6 +51,7 @@ function _arrayWithoutHoles(arr) {
|
|
|
49
51
|
}
|
|
50
52
|
|
|
51
53
|
module.exports = _arrayWithoutHoles;
|
|
54
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
52
55
|
|
|
53
56
|
/***/ }),
|
|
54
57
|
|
|
@@ -64,6 +67,7 @@ function _assertThisInitialized(self) {
|
|
|
64
67
|
}
|
|
65
68
|
|
|
66
69
|
module.exports = _assertThisInitialized;
|
|
70
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
67
71
|
|
|
68
72
|
/***/ }),
|
|
69
73
|
|
|
@@ -77,6 +81,7 @@ function _classCallCheck(instance, Constructor) {
|
|
|
77
81
|
}
|
|
78
82
|
|
|
79
83
|
module.exports = _classCallCheck;
|
|
84
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
80
85
|
|
|
81
86
|
/***/ }),
|
|
82
87
|
|
|
@@ -100,6 +105,7 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
100
105
|
}
|
|
101
106
|
|
|
102
107
|
module.exports = _createClass;
|
|
108
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
103
109
|
|
|
104
110
|
/***/ }),
|
|
105
111
|
|
|
@@ -122,6 +128,7 @@ function _defineProperty(obj, key, value) {
|
|
|
122
128
|
}
|
|
123
129
|
|
|
124
130
|
module.exports = _defineProperty;
|
|
131
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
125
132
|
|
|
126
133
|
/***/ }),
|
|
127
134
|
|
|
@@ -143,10 +150,12 @@ function _extends() {
|
|
|
143
150
|
return target;
|
|
144
151
|
};
|
|
145
152
|
|
|
153
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
146
154
|
return _extends.apply(this, arguments);
|
|
147
155
|
}
|
|
148
156
|
|
|
149
157
|
module.exports = _extends;
|
|
158
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
150
159
|
|
|
151
160
|
/***/ }),
|
|
152
161
|
|
|
@@ -155,9 +164,10 @@ module.exports = _extends;
|
|
|
155
164
|
|
|
156
165
|
var superPropBase = __webpack_require__(8331);
|
|
157
166
|
|
|
158
|
-
function _get(
|
|
167
|
+
function _get() {
|
|
159
168
|
if (typeof Reflect !== "undefined" && Reflect.get) {
|
|
160
169
|
module.exports = _get = Reflect.get;
|
|
170
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
161
171
|
} else {
|
|
162
172
|
module.exports = _get = function _get(target, property, receiver) {
|
|
163
173
|
var base = superPropBase(target, property);
|
|
@@ -165,17 +175,20 @@ function _get(target, property, receiver) {
|
|
|
165
175
|
var desc = Object.getOwnPropertyDescriptor(base, property);
|
|
166
176
|
|
|
167
177
|
if (desc.get) {
|
|
168
|
-
return desc.get.call(receiver);
|
|
178
|
+
return desc.get.call(arguments.length < 3 ? target : receiver);
|
|
169
179
|
}
|
|
170
180
|
|
|
171
181
|
return desc.value;
|
|
172
182
|
};
|
|
183
|
+
|
|
184
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
173
185
|
}
|
|
174
186
|
|
|
175
|
-
return _get(
|
|
187
|
+
return _get.apply(this, arguments);
|
|
176
188
|
}
|
|
177
189
|
|
|
178
190
|
module.exports = _get;
|
|
191
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
179
192
|
|
|
180
193
|
/***/ }),
|
|
181
194
|
|
|
@@ -186,10 +199,12 @@ function _getPrototypeOf(o) {
|
|
|
186
199
|
module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
187
200
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
188
201
|
};
|
|
202
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
189
203
|
return _getPrototypeOf(o);
|
|
190
204
|
}
|
|
191
205
|
|
|
192
206
|
module.exports = _getPrototypeOf;
|
|
207
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
193
208
|
|
|
194
209
|
/***/ }),
|
|
195
210
|
|
|
@@ -214,6 +229,7 @@ function _inherits(subClass, superClass) {
|
|
|
214
229
|
}
|
|
215
230
|
|
|
216
231
|
module.exports = _inherits;
|
|
232
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
217
233
|
|
|
218
234
|
/***/ }),
|
|
219
235
|
|
|
@@ -221,10 +237,11 @@ module.exports = _inherits;
|
|
|
221
237
|
/***/ ((module) => {
|
|
222
238
|
|
|
223
239
|
function _iterableToArray(iter) {
|
|
224
|
-
if (typeof Symbol !== "undefined" && Symbol.iterator
|
|
240
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
225
241
|
}
|
|
226
242
|
|
|
227
243
|
module.exports = _iterableToArray;
|
|
244
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
228
245
|
|
|
229
246
|
/***/ }),
|
|
230
247
|
|
|
@@ -232,14 +249,17 @@ module.exports = _iterableToArray;
|
|
|
232
249
|
/***/ ((module) => {
|
|
233
250
|
|
|
234
251
|
function _iterableToArrayLimit(arr, i) {
|
|
235
|
-
|
|
252
|
+
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
253
|
+
|
|
254
|
+
if (_i == null) return;
|
|
236
255
|
var _arr = [];
|
|
237
256
|
var _n = true;
|
|
238
257
|
var _d = false;
|
|
239
|
-
|
|
258
|
+
|
|
259
|
+
var _s, _e;
|
|
240
260
|
|
|
241
261
|
try {
|
|
242
|
-
for (
|
|
262
|
+
for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {
|
|
243
263
|
_arr.push(_s.value);
|
|
244
264
|
|
|
245
265
|
if (i && _arr.length === i) break;
|
|
@@ -259,6 +279,7 @@ function _iterableToArrayLimit(arr, i) {
|
|
|
259
279
|
}
|
|
260
280
|
|
|
261
281
|
module.exports = _iterableToArrayLimit;
|
|
282
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
262
283
|
|
|
263
284
|
/***/ }),
|
|
264
285
|
|
|
@@ -270,6 +291,7 @@ function _nonIterableRest() {
|
|
|
270
291
|
}
|
|
271
292
|
|
|
272
293
|
module.exports = _nonIterableRest;
|
|
294
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
273
295
|
|
|
274
296
|
/***/ }),
|
|
275
297
|
|
|
@@ -281,6 +303,7 @@ function _nonIterableSpread() {
|
|
|
281
303
|
}
|
|
282
304
|
|
|
283
305
|
module.exports = _nonIterableSpread;
|
|
306
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
284
307
|
|
|
285
308
|
/***/ }),
|
|
286
309
|
|
|
@@ -309,6 +332,7 @@ function _objectWithoutProperties(source, excluded) {
|
|
|
309
332
|
}
|
|
310
333
|
|
|
311
334
|
module.exports = _objectWithoutProperties;
|
|
335
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
312
336
|
|
|
313
337
|
/***/ }),
|
|
314
338
|
|
|
@@ -331,25 +355,29 @@ function _objectWithoutPropertiesLoose(source, excluded) {
|
|
|
331
355
|
}
|
|
332
356
|
|
|
333
357
|
module.exports = _objectWithoutPropertiesLoose;
|
|
358
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
334
359
|
|
|
335
360
|
/***/ }),
|
|
336
361
|
|
|
337
362
|
/***/ 8585:
|
|
338
363
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
339
364
|
|
|
340
|
-
var _typeof = __webpack_require__(8);
|
|
365
|
+
var _typeof = __webpack_require__(8)["default"];
|
|
341
366
|
|
|
342
367
|
var assertThisInitialized = __webpack_require__(1506);
|
|
343
368
|
|
|
344
369
|
function _possibleConstructorReturn(self, call) {
|
|
345
370
|
if (call && (_typeof(call) === "object" || typeof call === "function")) {
|
|
346
371
|
return call;
|
|
372
|
+
} else if (call !== void 0) {
|
|
373
|
+
throw new TypeError("Derived constructors may only return object or undefined");
|
|
347
374
|
}
|
|
348
375
|
|
|
349
376
|
return assertThisInitialized(self);
|
|
350
377
|
}
|
|
351
378
|
|
|
352
379
|
module.exports = _possibleConstructorReturn;
|
|
380
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
353
381
|
|
|
354
382
|
/***/ }),
|
|
355
383
|
|
|
@@ -362,10 +390,12 @@ function _setPrototypeOf(o, p) {
|
|
|
362
390
|
return o;
|
|
363
391
|
};
|
|
364
392
|
|
|
393
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
365
394
|
return _setPrototypeOf(o, p);
|
|
366
395
|
}
|
|
367
396
|
|
|
368
397
|
module.exports = _setPrototypeOf;
|
|
398
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
369
399
|
|
|
370
400
|
/***/ }),
|
|
371
401
|
|
|
@@ -385,6 +415,7 @@ function _slicedToArray(arr, i) {
|
|
|
385
415
|
}
|
|
386
416
|
|
|
387
417
|
module.exports = _slicedToArray;
|
|
418
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
388
419
|
|
|
389
420
|
/***/ }),
|
|
390
421
|
|
|
@@ -403,6 +434,7 @@ function _superPropBase(object, property) {
|
|
|
403
434
|
}
|
|
404
435
|
|
|
405
436
|
module.exports = _superPropBase;
|
|
437
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
406
438
|
|
|
407
439
|
/***/ }),
|
|
408
440
|
|
|
@@ -422,6 +454,7 @@ function _toArray(arr) {
|
|
|
422
454
|
}
|
|
423
455
|
|
|
424
456
|
module.exports = _toArray;
|
|
457
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
425
458
|
|
|
426
459
|
/***/ }),
|
|
427
460
|
|
|
@@ -441,6 +474,7 @@ function _toConsumableArray(arr) {
|
|
|
441
474
|
}
|
|
442
475
|
|
|
443
476
|
module.exports = _toConsumableArray;
|
|
477
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
444
478
|
|
|
445
479
|
/***/ }),
|
|
446
480
|
|
|
@@ -454,16 +488,21 @@ function _typeof(obj) {
|
|
|
454
488
|
module.exports = _typeof = function _typeof(obj) {
|
|
455
489
|
return typeof obj;
|
|
456
490
|
};
|
|
491
|
+
|
|
492
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
457
493
|
} else {
|
|
458
494
|
module.exports = _typeof = function _typeof(obj) {
|
|
459
495
|
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
460
496
|
};
|
|
497
|
+
|
|
498
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
461
499
|
}
|
|
462
500
|
|
|
463
501
|
return _typeof(obj);
|
|
464
502
|
}
|
|
465
503
|
|
|
466
504
|
module.exports = _typeof;
|
|
505
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
467
506
|
|
|
468
507
|
/***/ }),
|
|
469
508
|
|
|
@@ -482,6 +521,7 @@ function _unsupportedIterableToArray(o, minLen) {
|
|
|
482
521
|
}
|
|
483
522
|
|
|
484
523
|
module.exports = _unsupportedIterableToArray;
|
|
524
|
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
485
525
|
|
|
486
526
|
/***/ }),
|
|
487
527
|
|
|
@@ -10720,7 +10760,7 @@ module.exports = function CalloutCompiler() {
|
|
|
10720
10760
|
|
|
10721
10761
|
visitors['rdme-callout'] = function compile(node) {
|
|
10722
10762
|
var block = this.block(node).replace(/\n/g, '\n> ');
|
|
10723
|
-
block = "> ".concat(block);
|
|
10763
|
+
block = "> ".concat(node.data.hProperties.icon, " ").concat(block);
|
|
10724
10764
|
return block;
|
|
10725
10765
|
};
|
|
10726
10766
|
};
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@readme/markdown",
|
|
3
3
|
"description": "ReadMe's React-based Markdown parser",
|
|
4
4
|
"author": "Rafe Goldberg <rafe@readme.io>",
|
|
5
|
-
"version": "6.33.
|
|
5
|
+
"version": "6.33.2",
|
|
6
6
|
"main": "dist/main.node.js",
|
|
7
7
|
"browser": "dist/main.js",
|
|
8
8
|
"files": [
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"@commitlint/config-angular": "^13.1.0",
|
|
73
73
|
"@commitlint/config-conventional": "^13.1.0",
|
|
74
74
|
"@hot-loader/react-dom": "^16.14.0",
|
|
75
|
-
"@readme/eslint-config": "^
|
|
75
|
+
"@readme/eslint-config": "^8.0.2",
|
|
76
76
|
"@readme/variable": "^13.5.4",
|
|
77
77
|
"@semantic-release/changelog": "^5.0.1",
|
|
78
78
|
"@semantic-release/git": "^9.0.1",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"css-loader": "^6.3.0",
|
|
84
84
|
"enzyme": "^3.11.0",
|
|
85
85
|
"enzyme-adapter-react-16": "^1.15.6",
|
|
86
|
-
"eslint": "^
|
|
86
|
+
"eslint": "^8.2.0",
|
|
87
87
|
"husky": "^7.0.2",
|
|
88
88
|
"identity-obj-proxy": "^3.0.0",
|
|
89
89
|
"jest": "^27.2.1",
|