@readme/markdown 6.75.0-beta.29 → 6.75.0-beta.30
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/components/Table/index.tsx +19 -0
- package/dist/components/Table/index.d.ts +6 -0
- package/dist/errors/mdx-syntax-error.d.ts +5 -0
- package/dist/example/RenderError.d.ts +1 -0
- package/dist/main.js +68 -46
- package/dist/main.node.js +68 -48
- package/dist/processor/compile/index.d.ts +1 -7
- package/dist/processor/compile/table.d.ts +0 -0
- package/package.json +3 -2
- package/components/Table/index.jsx +0 -19
- package/dist/main.css +0 -399
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
interface Props extends JSX.IntrinsicAttributes {
|
|
4
|
+
children: [React.ReactElement<HTMLTableCaptionElement | HTMLTableSectionElement | HTMLTableRowElement>];
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
const Table = (props: Props) => {
|
|
8
|
+
const { children } = props;
|
|
9
|
+
|
|
10
|
+
return (
|
|
11
|
+
<div className="rdmd-table">
|
|
12
|
+
<div className="rdmd-table-inner">
|
|
13
|
+
<table>{children}</table>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export default Table;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface Props extends JSX.IntrinsicAttributes {
|
|
3
|
+
children: [React.ReactElement<HTMLTableCaptionElement | HTMLTableSectionElement | HTMLTableRowElement>];
|
|
4
|
+
}
|
|
5
|
+
declare const Table: (props: Props) => React.JSX.Element;
|
|
6
|
+
export default Table;
|
package/dist/main.js
CHANGED
|
@@ -7336,26 +7336,6 @@ module.exports = CreateStyle;
|
|
|
7336
7336
|
|
|
7337
7337
|
/***/ }),
|
|
7338
7338
|
|
|
7339
|
-
/***/ 4860:
|
|
7340
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
7341
|
-
|
|
7342
|
-
var PropTypes = __webpack_require__(5556);
|
|
7343
|
-
var React = __webpack_require__(1307);
|
|
7344
|
-
function Table(props) {
|
|
7345
|
-
var children = props.children;
|
|
7346
|
-
return /*#__PURE__*/React.createElement("div", {
|
|
7347
|
-
className: "rdmd-table"
|
|
7348
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
7349
|
-
className: "rdmd-table-inner"
|
|
7350
|
-
}, /*#__PURE__*/React.createElement("table", null, children)));
|
|
7351
|
-
}
|
|
7352
|
-
Table.propTypes = {
|
|
7353
|
-
children: PropTypes.arrayOf(PropTypes.node).isRequired
|
|
7354
|
-
};
|
|
7355
|
-
module.exports = Table;
|
|
7356
|
-
|
|
7357
|
-
/***/ }),
|
|
7358
|
-
|
|
7359
7339
|
/***/ 9357:
|
|
7360
7340
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
7361
7341
|
|
|
@@ -14443,16 +14423,6 @@ function escape(string) {
|
|
|
14443
14423
|
module.exports = escape;
|
|
14444
14424
|
|
|
14445
14425
|
|
|
14446
|
-
/***/ }),
|
|
14447
|
-
|
|
14448
|
-
/***/ 7973:
|
|
14449
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
14450
|
-
|
|
14451
|
-
"use strict";
|
|
14452
|
-
__webpack_require__.r(__webpack_exports__);
|
|
14453
|
-
// extracted by mini-css-extract-plugin
|
|
14454
|
-
|
|
14455
|
-
|
|
14456
14426
|
/***/ }),
|
|
14457
14427
|
|
|
14458
14428
|
/***/ 6585:
|
|
@@ -15063,7 +15033,7 @@ __webpack_require__.d(components_namespaceObject, {
|
|
|
15063
15033
|
Heading: () => ((Heading_default())),
|
|
15064
15034
|
Image: () => (components_Image),
|
|
15065
15035
|
Style: () => ((Style_default())),
|
|
15066
|
-
Table: () => (
|
|
15036
|
+
Table: () => (components_Table),
|
|
15067
15037
|
TableOfContents: () => (components_TableOfContents)
|
|
15068
15038
|
});
|
|
15069
15039
|
|
|
@@ -63815,9 +63785,16 @@ var Image = function (props) {
|
|
|
63815
63785
|
// EXTERNAL MODULE: ./components/Style.jsx
|
|
63816
63786
|
var Style = __webpack_require__(338);
|
|
63817
63787
|
var Style_default = /*#__PURE__*/__webpack_require__.n(Style);
|
|
63818
|
-
|
|
63819
|
-
|
|
63820
|
-
var
|
|
63788
|
+
;// CONCATENATED MODULE: ./components/Table/index.tsx
|
|
63789
|
+
|
|
63790
|
+
var Table = function (props) {
|
|
63791
|
+
var children = props.children;
|
|
63792
|
+
return (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("div", { className: "rdmd-table" },
|
|
63793
|
+
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("div", { className: "rdmd-table-inner" },
|
|
63794
|
+
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("table", null, children))));
|
|
63795
|
+
};
|
|
63796
|
+
/* harmony default export */ const components_Table = (Table);
|
|
63797
|
+
|
|
63821
63798
|
// EXTERNAL MODULE: ./node_modules/prop-types/index.js
|
|
63822
63799
|
var prop_types = __webpack_require__(5556);
|
|
63823
63800
|
;// CONCATENATED MODULE: ./components/TableOfContents/index.jsx
|
|
@@ -81891,20 +81868,63 @@ var compile_image_image = function (node) {
|
|
|
81891
81868
|
/* harmony default export */ const compile_image = (compile_image_image);
|
|
81892
81869
|
|
|
81893
81870
|
;// CONCATENATED MODULE: ./processor/compile/index.ts
|
|
81894
|
-
var _a;
|
|
81895
81871
|
|
|
81896
81872
|
|
|
81897
81873
|
|
|
81898
81874
|
|
|
81899
|
-
|
|
81900
|
-
|
|
81875
|
+
function compilers() {
|
|
81876
|
+
var _a;
|
|
81877
|
+
var data = this.data();
|
|
81878
|
+
var toMarkdownExtensions = data.toMarkdownExtensions || (data.toMarkdownExtensions = []);
|
|
81879
|
+
var handlers = (_a = {},
|
|
81901
81880
|
_a[NodeTypes.emoji] = compile_gemoji,
|
|
81902
81881
|
_a[NodeTypes.codeTabs] = compile_code_tabs,
|
|
81903
81882
|
_a[NodeTypes.image] = compile_image,
|
|
81904
|
-
_a)
|
|
81905
|
-
};
|
|
81883
|
+
_a);
|
|
81884
|
+
toMarkdownExtensions.push({ extensions: [{ handlers: handlers }] });
|
|
81885
|
+
}
|
|
81906
81886
|
/* harmony default export */ const processor_compile = (compilers);
|
|
81907
81887
|
|
|
81888
|
+
;// CONCATENATED MODULE: ./errors/mdx-syntax-error.ts
|
|
81889
|
+
var __extends = (undefined && undefined.__extends) || (function () {
|
|
81890
|
+
var extendStatics = function (d, b) {
|
|
81891
|
+
extendStatics = Object.setPrototypeOf ||
|
|
81892
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
81893
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
81894
|
+
return extendStatics(d, b);
|
|
81895
|
+
};
|
|
81896
|
+
return function (d, b) {
|
|
81897
|
+
if (typeof b !== "function" && b !== null)
|
|
81898
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
81899
|
+
extendStatics(d, b);
|
|
81900
|
+
function __() { this.constructor = d; }
|
|
81901
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
81902
|
+
};
|
|
81903
|
+
})();
|
|
81904
|
+
var MdxSyntaxError = /** @class */ (function (_super) {
|
|
81905
|
+
__extends(MdxSyntaxError, _super);
|
|
81906
|
+
function MdxSyntaxError(error, doc) {
|
|
81907
|
+
var _this = this;
|
|
81908
|
+
var message = error.message, line = error.line, column = error.column, url = error.url;
|
|
81909
|
+
var messages = [
|
|
81910
|
+
"Oh no! We ran into a syntax error at { line: ".concat(line, ", column: ").concat(column, " }, please see this url for more details: ").concat(url),
|
|
81911
|
+
];
|
|
81912
|
+
if (typeof line !== 'undefined') {
|
|
81913
|
+
messages.push(doc.split('\n')[line - 1]);
|
|
81914
|
+
if (typeof column !== 'undefined') {
|
|
81915
|
+
var prefix = new Array(column).map(function () { return ''; }).join(' ');
|
|
81916
|
+
messages.push("".concat(prefix, "\u2191 ").concat(message));
|
|
81917
|
+
}
|
|
81918
|
+
}
|
|
81919
|
+
_this = _super.call(this, messages.join('\n')) || this;
|
|
81920
|
+
_this.original = null;
|
|
81921
|
+
_this.original = error;
|
|
81922
|
+
return _this;
|
|
81923
|
+
}
|
|
81924
|
+
return MdxSyntaxError;
|
|
81925
|
+
}(SyntaxError));
|
|
81926
|
+
/* harmony default export */ const mdx_syntax_error = (MdxSyntaxError);
|
|
81927
|
+
|
|
81908
81928
|
;// CONCATENATED MODULE: ./index.tsx
|
|
81909
81929
|
var index_assign = (undefined && undefined.__assign) || function () {
|
|
81910
81930
|
index_assign = Object.assign || function(t) {
|
|
@@ -81988,7 +82008,7 @@ var __spreadArray = (undefined && undefined.__spreadArray) || function (to, from
|
|
|
81988
82008
|
|
|
81989
82009
|
|
|
81990
82010
|
|
|
81991
|
-
|
|
82011
|
+
|
|
81992
82012
|
|
|
81993
82013
|
|
|
81994
82014
|
var unimplemented = browser_default()('mdx:unimplemented');
|
|
@@ -82004,7 +82024,7 @@ var utils = {
|
|
|
82004
82024
|
calloutIcons: {},
|
|
82005
82025
|
};
|
|
82006
82026
|
var makeUseMDXComponents = function (more) {
|
|
82007
|
-
var components = index_assign(index_assign(index_assign({}, more), components_namespaceObject), { Variable: (variable_default()), 'code-tabs': components_CodeTabs, img: components_Image });
|
|
82027
|
+
var components = index_assign(index_assign(index_assign({}, more), components_namespaceObject), { Variable: (variable_default()), 'code-tabs': components_CodeTabs, img: components_Image, table: components_Table });
|
|
82008
82028
|
return function () { return components; };
|
|
82009
82029
|
};
|
|
82010
82030
|
var remarkPlugins = __spreadArray([remarkFrontmatter, remarkGfm], transform, true);
|
|
@@ -82014,7 +82034,12 @@ var reactProcessor = function (opts) {
|
|
|
82014
82034
|
};
|
|
82015
82035
|
var index_compile = function (text, opts) {
|
|
82016
82036
|
if (opts === void 0) { opts = {}; }
|
|
82017
|
-
|
|
82037
|
+
try {
|
|
82038
|
+
return String(compileSync(text, index_assign({ outputFormat: 'function-body', providerImportSource: '#', remarkPlugins: remarkPlugins }, opts))).replace(/await import\(_resolveDynamicMdxSpecifier\('react'\)\)/, 'arguments[0].imports.React');
|
|
82039
|
+
}
|
|
82040
|
+
catch (error) {
|
|
82041
|
+
throw new mdx_syntax_error(error, text);
|
|
82042
|
+
}
|
|
82018
82043
|
};
|
|
82019
82044
|
var index_run = function (code_1) {
|
|
82020
82045
|
var args_1 = [];
|
|
@@ -82043,10 +82068,7 @@ var reactTOC = function (text, opts) {
|
|
|
82043
82068
|
};
|
|
82044
82069
|
var index_mdx = function (tree, opts) {
|
|
82045
82070
|
if (opts === void 0) { opts = {}; }
|
|
82046
|
-
return remark()
|
|
82047
|
-
.use(remarkMdx)
|
|
82048
|
-
.data({ toMarkdownExtensions: [{ extensions: [processor_compile] }] })
|
|
82049
|
-
.stringify(tree, opts);
|
|
82071
|
+
return remark().use(remarkMdx).use(remarkGfm).use(processor_compile).stringify(tree, opts);
|
|
82050
82072
|
};
|
|
82051
82073
|
var index_html = function (text, opts) {
|
|
82052
82074
|
if (opts === void 0) { opts = {}; }
|
package/dist/main.node.js
CHANGED
|
@@ -7181,28 +7181,6 @@ module.exports = CreateStyle;
|
|
|
7181
7181
|
|
|
7182
7182
|
/***/ }),
|
|
7183
7183
|
|
|
7184
|
-
/***/ 860:
|
|
7185
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
7186
|
-
|
|
7187
|
-
const PropTypes = __webpack_require__(556);
|
|
7188
|
-
const React = __webpack_require__(540);
|
|
7189
|
-
function Table(props) {
|
|
7190
|
-
const {
|
|
7191
|
-
children
|
|
7192
|
-
} = props;
|
|
7193
|
-
return /*#__PURE__*/React.createElement("div", {
|
|
7194
|
-
className: "rdmd-table"
|
|
7195
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
7196
|
-
className: "rdmd-table-inner"
|
|
7197
|
-
}, /*#__PURE__*/React.createElement("table", null, children)));
|
|
7198
|
-
}
|
|
7199
|
-
Table.propTypes = {
|
|
7200
|
-
children: PropTypes.arrayOf(PropTypes.node).isRequired
|
|
7201
|
-
};
|
|
7202
|
-
module.exports = Table;
|
|
7203
|
-
|
|
7204
|
-
/***/ }),
|
|
7205
|
-
|
|
7206
7184
|
/***/ 357:
|
|
7207
7185
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
7208
7186
|
|
|
@@ -8938,16 +8916,6 @@ function escape(string) {
|
|
|
8938
8916
|
module.exports = escape;
|
|
8939
8917
|
|
|
8940
8918
|
|
|
8941
|
-
/***/ }),
|
|
8942
|
-
|
|
8943
|
-
/***/ 973:
|
|
8944
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8945
|
-
|
|
8946
|
-
"use strict";
|
|
8947
|
-
__webpack_require__.r(__webpack_exports__);
|
|
8948
|
-
// extracted by mini-css-extract-plugin
|
|
8949
|
-
|
|
8950
|
-
|
|
8951
8919
|
/***/ }),
|
|
8952
8920
|
|
|
8953
8921
|
/***/ 585:
|
|
@@ -10139,7 +10107,7 @@ __webpack_require__.d(components_namespaceObject, {
|
|
|
10139
10107
|
Heading: () => ((Heading_default())),
|
|
10140
10108
|
Image: () => (components_Image),
|
|
10141
10109
|
Style: () => ((Style_default())),
|
|
10142
|
-
Table: () => (
|
|
10110
|
+
Table: () => (components_Table),
|
|
10143
10111
|
TableOfContents: () => (components_TableOfContents)
|
|
10144
10112
|
});
|
|
10145
10113
|
|
|
@@ -65449,9 +65417,16 @@ var Image = function (props) {
|
|
|
65449
65417
|
// EXTERNAL MODULE: ./components/Style.jsx
|
|
65450
65418
|
var Style = __webpack_require__(338);
|
|
65451
65419
|
var Style_default = /*#__PURE__*/__webpack_require__.n(Style);
|
|
65452
|
-
|
|
65453
|
-
|
|
65454
|
-
var
|
|
65420
|
+
;// CONCATENATED MODULE: ./components/Table/index.tsx
|
|
65421
|
+
|
|
65422
|
+
var Table = function (props) {
|
|
65423
|
+
var children = props.children;
|
|
65424
|
+
return (react.createElement("div", { className: "rdmd-table" },
|
|
65425
|
+
react.createElement("div", { className: "rdmd-table-inner" },
|
|
65426
|
+
react.createElement("table", null, children))));
|
|
65427
|
+
};
|
|
65428
|
+
/* harmony default export */ const components_Table = (Table);
|
|
65429
|
+
|
|
65455
65430
|
// EXTERNAL MODULE: ./node_modules/prop-types/index.js
|
|
65456
65431
|
var prop_types = __webpack_require__(556);
|
|
65457
65432
|
;// CONCATENATED MODULE: ./components/TableOfContents/index.jsx
|
|
@@ -83458,20 +83433,63 @@ var compile_image_image = function (node) {
|
|
|
83458
83433
|
/* harmony default export */ const compile_image = (compile_image_image);
|
|
83459
83434
|
|
|
83460
83435
|
;// CONCATENATED MODULE: ./processor/compile/index.ts
|
|
83461
|
-
var _a;
|
|
83462
83436
|
|
|
83463
83437
|
|
|
83464
83438
|
|
|
83465
83439
|
|
|
83466
|
-
|
|
83467
|
-
|
|
83440
|
+
function compilers() {
|
|
83441
|
+
var _a;
|
|
83442
|
+
var data = this.data();
|
|
83443
|
+
var toMarkdownExtensions = data.toMarkdownExtensions || (data.toMarkdownExtensions = []);
|
|
83444
|
+
var handlers = (_a = {},
|
|
83468
83445
|
_a[NodeTypes.emoji] = compile_gemoji,
|
|
83469
83446
|
_a[NodeTypes.codeTabs] = compile_code_tabs,
|
|
83470
83447
|
_a[NodeTypes.image] = compile_image,
|
|
83471
|
-
_a)
|
|
83472
|
-
};
|
|
83448
|
+
_a);
|
|
83449
|
+
toMarkdownExtensions.push({ extensions: [{ handlers: handlers }] });
|
|
83450
|
+
}
|
|
83473
83451
|
/* harmony default export */ const processor_compile = (compilers);
|
|
83474
83452
|
|
|
83453
|
+
;// CONCATENATED MODULE: ./errors/mdx-syntax-error.ts
|
|
83454
|
+
var __extends = (undefined && undefined.__extends) || (function () {
|
|
83455
|
+
var extendStatics = function (d, b) {
|
|
83456
|
+
extendStatics = Object.setPrototypeOf ||
|
|
83457
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
83458
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
83459
|
+
return extendStatics(d, b);
|
|
83460
|
+
};
|
|
83461
|
+
return function (d, b) {
|
|
83462
|
+
if (typeof b !== "function" && b !== null)
|
|
83463
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
83464
|
+
extendStatics(d, b);
|
|
83465
|
+
function __() { this.constructor = d; }
|
|
83466
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
83467
|
+
};
|
|
83468
|
+
})();
|
|
83469
|
+
var MdxSyntaxError = /** @class */ (function (_super) {
|
|
83470
|
+
__extends(MdxSyntaxError, _super);
|
|
83471
|
+
function MdxSyntaxError(error, doc) {
|
|
83472
|
+
var _this = this;
|
|
83473
|
+
var message = error.message, line = error.line, column = error.column, url = error.url;
|
|
83474
|
+
var messages = [
|
|
83475
|
+
"Oh no! We ran into a syntax error at { line: ".concat(line, ", column: ").concat(column, " }, please see this url for more details: ").concat(url),
|
|
83476
|
+
];
|
|
83477
|
+
if (typeof line !== 'undefined') {
|
|
83478
|
+
messages.push(doc.split('\n')[line - 1]);
|
|
83479
|
+
if (typeof column !== 'undefined') {
|
|
83480
|
+
var prefix = new Array(column).map(function () { return ''; }).join(' ');
|
|
83481
|
+
messages.push("".concat(prefix, "\u2191 ").concat(message));
|
|
83482
|
+
}
|
|
83483
|
+
}
|
|
83484
|
+
_this = _super.call(this, messages.join('\n')) || this;
|
|
83485
|
+
_this.original = null;
|
|
83486
|
+
_this.original = error;
|
|
83487
|
+
return _this;
|
|
83488
|
+
}
|
|
83489
|
+
return MdxSyntaxError;
|
|
83490
|
+
}(SyntaxError));
|
|
83491
|
+
/* harmony default export */ const mdx_syntax_error = (MdxSyntaxError);
|
|
83492
|
+
|
|
83475
83493
|
;// CONCATENATED MODULE: ./index.tsx
|
|
83476
83494
|
var index_assign = (undefined && undefined.__assign) || function () {
|
|
83477
83495
|
index_assign = Object.assign || function(t) {
|
|
@@ -83555,7 +83573,7 @@ var __spreadArray = (undefined && undefined.__spreadArray) || function (to, from
|
|
|
83555
83573
|
|
|
83556
83574
|
|
|
83557
83575
|
|
|
83558
|
-
|
|
83576
|
+
|
|
83559
83577
|
|
|
83560
83578
|
|
|
83561
83579
|
var unimplemented = src_default()('mdx:unimplemented');
|
|
@@ -83571,7 +83589,7 @@ var utils = {
|
|
|
83571
83589
|
calloutIcons: {},
|
|
83572
83590
|
};
|
|
83573
83591
|
var makeUseMDXComponents = function (more) {
|
|
83574
|
-
var components = index_assign(index_assign(index_assign({}, more), components_namespaceObject), { Variable: (dist_default()), 'code-tabs': components_CodeTabs, img: components_Image });
|
|
83592
|
+
var components = index_assign(index_assign(index_assign({}, more), components_namespaceObject), { Variable: (dist_default()), 'code-tabs': components_CodeTabs, img: components_Image, table: components_Table });
|
|
83575
83593
|
return function () { return components; };
|
|
83576
83594
|
};
|
|
83577
83595
|
var remarkPlugins = __spreadArray([remarkFrontmatter, remarkGfm], transform, true);
|
|
@@ -83581,7 +83599,12 @@ var reactProcessor = function (opts) {
|
|
|
83581
83599
|
};
|
|
83582
83600
|
var index_compile = function (text, opts) {
|
|
83583
83601
|
if (opts === void 0) { opts = {}; }
|
|
83584
|
-
|
|
83602
|
+
try {
|
|
83603
|
+
return String(compileSync(text, index_assign({ outputFormat: 'function-body', providerImportSource: '#', remarkPlugins: remarkPlugins }, opts))).replace(/await import\(_resolveDynamicMdxSpecifier\('react'\)\)/, 'arguments[0].imports.React');
|
|
83604
|
+
}
|
|
83605
|
+
catch (error) {
|
|
83606
|
+
throw new mdx_syntax_error(error, text);
|
|
83607
|
+
}
|
|
83585
83608
|
};
|
|
83586
83609
|
var index_run = function (code_1) {
|
|
83587
83610
|
var args_1 = [];
|
|
@@ -83610,10 +83633,7 @@ var reactTOC = function (text, opts) {
|
|
|
83610
83633
|
};
|
|
83611
83634
|
var index_mdx = function (tree, opts) {
|
|
83612
83635
|
if (opts === void 0) { opts = {}; }
|
|
83613
|
-
return remark()
|
|
83614
|
-
.use(remarkMdx)
|
|
83615
|
-
.data({ toMarkdownExtensions: [{ extensions: [processor_compile] }] })
|
|
83616
|
-
.stringify(tree, opts);
|
|
83636
|
+
return remark().use(remarkMdx).use(remarkGfm).use(processor_compile).stringify(tree, opts);
|
|
83617
83637
|
};
|
|
83618
83638
|
var index_html = function (text, opts) {
|
|
83619
83639
|
if (opts === void 0) { opts = {}; }
|
|
@@ -1,8 +1,2 @@
|
|
|
1
|
-
declare
|
|
2
|
-
handlers: {
|
|
3
|
-
emoji: (node: import("../../types").Gemoji) => string;
|
|
4
|
-
"code-tabs": (node: import("../../types").CodeTabs, _: any, state: any, info: any) => any;
|
|
5
|
-
image: (node: import("mdast").Image) => string;
|
|
6
|
-
};
|
|
7
|
-
};
|
|
1
|
+
declare function compilers(): void;
|
|
8
2
|
export default compilers;
|
|
File without changes
|
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.75.0-beta.
|
|
5
|
+
"version": "6.75.0-beta.30",
|
|
6
6
|
"main": "dist/main.node.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"browser": "dist/main.js",
|
|
@@ -51,7 +51,8 @@
|
|
|
51
51
|
"trim": "^1.0.1",
|
|
52
52
|
"unified": "^8.4.0",
|
|
53
53
|
"unist-util-flatmap": "^1.0.0",
|
|
54
|
-
"unist-util-visit": "^4.1.1"
|
|
54
|
+
"unist-util-visit": "^4.1.1",
|
|
55
|
+
"util": "^0.12.5"
|
|
55
56
|
},
|
|
56
57
|
"peerDependencies": {
|
|
57
58
|
"@mdx-js/react": "^3.0.0",
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
const PropTypes = require('prop-types');
|
|
2
|
-
const React = require('react');
|
|
3
|
-
|
|
4
|
-
function Table(props) {
|
|
5
|
-
const { children } = props;
|
|
6
|
-
return (
|
|
7
|
-
<div className="rdmd-table">
|
|
8
|
-
<div className="rdmd-table-inner">
|
|
9
|
-
<table>{children}</table>
|
|
10
|
-
</div>
|
|
11
|
-
</div>
|
|
12
|
-
);
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
Table.propTypes = {
|
|
16
|
-
children: PropTypes.arrayOf(PropTypes.node).isRequired,
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
module.exports = Table;
|
package/dist/main.css
DELETED
|
@@ -1,399 +0,0 @@
|
|
|
1
|
-
/* BASICS */
|
|
2
|
-
|
|
3
|
-
.CodeMirror {
|
|
4
|
-
/* Set height, width, borders, and global font properties here */
|
|
5
|
-
font-family: monospace;
|
|
6
|
-
height: 300px;
|
|
7
|
-
color: black;
|
|
8
|
-
direction: ltr;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
/* PADDING */
|
|
12
|
-
|
|
13
|
-
.CodeMirror-lines {
|
|
14
|
-
padding: 4px 0; /* Vertical padding around content */
|
|
15
|
-
}
|
|
16
|
-
.CodeMirror pre.CodeMirror-line,
|
|
17
|
-
.CodeMirror pre.CodeMirror-line-like {
|
|
18
|
-
padding: 0 4px; /* Horizontal padding of content */
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
|
22
|
-
background-color: white; /* The little square between H and V scrollbars */
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
/* GUTTER */
|
|
26
|
-
|
|
27
|
-
.CodeMirror-gutters {
|
|
28
|
-
border-right: 1px solid #ddd;
|
|
29
|
-
background-color: #f7f7f7;
|
|
30
|
-
white-space: nowrap;
|
|
31
|
-
}
|
|
32
|
-
.CodeMirror-linenumbers {}
|
|
33
|
-
.CodeMirror-linenumber {
|
|
34
|
-
padding: 0 3px 0 5px;
|
|
35
|
-
min-width: 20px;
|
|
36
|
-
text-align: right;
|
|
37
|
-
color: #999;
|
|
38
|
-
white-space: nowrap;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.CodeMirror-guttermarker { color: black; }
|
|
42
|
-
.CodeMirror-guttermarker-subtle { color: #999; }
|
|
43
|
-
|
|
44
|
-
/* CURSOR */
|
|
45
|
-
|
|
46
|
-
.CodeMirror-cursor {
|
|
47
|
-
border-left: 1px solid black;
|
|
48
|
-
border-right: none;
|
|
49
|
-
width: 0;
|
|
50
|
-
}
|
|
51
|
-
/* Shown when moving in bi-directional text */
|
|
52
|
-
.CodeMirror div.CodeMirror-secondarycursor {
|
|
53
|
-
border-left: 1px solid silver;
|
|
54
|
-
}
|
|
55
|
-
.cm-fat-cursor .CodeMirror-cursor {
|
|
56
|
-
width: auto;
|
|
57
|
-
border: 0 !important;
|
|
58
|
-
background: #7e7;
|
|
59
|
-
}
|
|
60
|
-
.cm-fat-cursor div.CodeMirror-cursors {
|
|
61
|
-
z-index: 1;
|
|
62
|
-
}
|
|
63
|
-
.cm-fat-cursor .CodeMirror-line::selection,
|
|
64
|
-
.cm-fat-cursor .CodeMirror-line > span::selection,
|
|
65
|
-
.cm-fat-cursor .CodeMirror-line > span > span::selection { background: transparent; }
|
|
66
|
-
.cm-fat-cursor .CodeMirror-line::-moz-selection,
|
|
67
|
-
.cm-fat-cursor .CodeMirror-line > span::-moz-selection,
|
|
68
|
-
.cm-fat-cursor .CodeMirror-line > span > span::-moz-selection { background: transparent; }
|
|
69
|
-
.cm-fat-cursor { caret-color: transparent; }
|
|
70
|
-
@-moz-keyframes blink {
|
|
71
|
-
0% {}
|
|
72
|
-
50% { background-color: transparent; }
|
|
73
|
-
100% {}
|
|
74
|
-
}
|
|
75
|
-
@-webkit-keyframes blink {
|
|
76
|
-
0% {}
|
|
77
|
-
50% { background-color: transparent; }
|
|
78
|
-
100% {}
|
|
79
|
-
}
|
|
80
|
-
@keyframes blink {
|
|
81
|
-
0% {}
|
|
82
|
-
50% { background-color: transparent; }
|
|
83
|
-
100% {}
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
/* Can style cursor different in overwrite (non-insert) mode */
|
|
87
|
-
.CodeMirror-overwrite .CodeMirror-cursor {}
|
|
88
|
-
|
|
89
|
-
.cm-tab { display: inline-block; text-decoration: inherit; }
|
|
90
|
-
|
|
91
|
-
.CodeMirror-rulers {
|
|
92
|
-
position: absolute;
|
|
93
|
-
left: 0; right: 0; top: -50px; bottom: 0;
|
|
94
|
-
overflow: hidden;
|
|
95
|
-
}
|
|
96
|
-
.CodeMirror-ruler {
|
|
97
|
-
border-left: 1px solid #ccc;
|
|
98
|
-
top: 0; bottom: 0;
|
|
99
|
-
position: absolute;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
/* DEFAULT THEME */
|
|
103
|
-
|
|
104
|
-
.cm-s-default .cm-header {color: blue;}
|
|
105
|
-
.cm-s-default .cm-quote {color: #090;}
|
|
106
|
-
.cm-negative {color: #d44;}
|
|
107
|
-
.cm-positive {color: #292;}
|
|
108
|
-
.cm-header, .cm-strong {font-weight: bold;}
|
|
109
|
-
.cm-em {font-style: italic;}
|
|
110
|
-
.cm-link {text-decoration: underline;}
|
|
111
|
-
.cm-strikethrough {text-decoration: line-through;}
|
|
112
|
-
|
|
113
|
-
.cm-s-default .cm-keyword {color: #708;}
|
|
114
|
-
.cm-s-default .cm-atom {color: #219;}
|
|
115
|
-
.cm-s-default .cm-number {color: #164;}
|
|
116
|
-
.cm-s-default .cm-def {color: #00f;}
|
|
117
|
-
.cm-s-default .cm-variable,
|
|
118
|
-
.cm-s-default .cm-punctuation,
|
|
119
|
-
.cm-s-default .cm-property,
|
|
120
|
-
.cm-s-default .cm-operator {}
|
|
121
|
-
.cm-s-default .cm-variable-2 {color: #05a;}
|
|
122
|
-
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
|
|
123
|
-
.cm-s-default .cm-comment {color: #a50;}
|
|
124
|
-
.cm-s-default .cm-string {color: #a11;}
|
|
125
|
-
.cm-s-default .cm-string-2 {color: #f50;}
|
|
126
|
-
.cm-s-default .cm-meta {color: #555;}
|
|
127
|
-
.cm-s-default .cm-qualifier {color: #555;}
|
|
128
|
-
.cm-s-default .cm-builtin {color: #30a;}
|
|
129
|
-
.cm-s-default .cm-bracket {color: #997;}
|
|
130
|
-
.cm-s-default .cm-tag {color: #170;}
|
|
131
|
-
.cm-s-default .cm-attribute {color: #00c;}
|
|
132
|
-
.cm-s-default .cm-hr {color: #999;}
|
|
133
|
-
.cm-s-default .cm-link {color: #00c;}
|
|
134
|
-
|
|
135
|
-
.cm-s-default .cm-error {color: #f00;}
|
|
136
|
-
.cm-invalidchar {color: #f00;}
|
|
137
|
-
|
|
138
|
-
.CodeMirror-composing { border-bottom: 2px solid; }
|
|
139
|
-
|
|
140
|
-
/* Default styles for common addons */
|
|
141
|
-
|
|
142
|
-
div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
|
|
143
|
-
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
|
|
144
|
-
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
|
|
145
|
-
.CodeMirror-activeline-background {background: #e8f2ff;}
|
|
146
|
-
|
|
147
|
-
/* STOP */
|
|
148
|
-
|
|
149
|
-
/* The rest of this file contains styles related to the mechanics of
|
|
150
|
-
the editor. You probably shouldn't touch them. */
|
|
151
|
-
|
|
152
|
-
.CodeMirror {
|
|
153
|
-
position: relative;
|
|
154
|
-
overflow: hidden;
|
|
155
|
-
background: white;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.CodeMirror-scroll {
|
|
159
|
-
overflow: scroll !important; /* Things will break if this is overridden */
|
|
160
|
-
/* 50px is the magic margin used to hide the element's real scrollbars */
|
|
161
|
-
/* See overflow: hidden in .CodeMirror */
|
|
162
|
-
margin-bottom: -50px; margin-right: -50px;
|
|
163
|
-
padding-bottom: 50px;
|
|
164
|
-
height: 100%;
|
|
165
|
-
outline: none; /* Prevent dragging from highlighting the element */
|
|
166
|
-
position: relative;
|
|
167
|
-
z-index: 0;
|
|
168
|
-
}
|
|
169
|
-
.CodeMirror-sizer {
|
|
170
|
-
position: relative;
|
|
171
|
-
border-right: 50px solid transparent;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
/* The fake, visible scrollbars. Used to force redraw during scrolling
|
|
175
|
-
before actual scrolling happens, thus preventing shaking and
|
|
176
|
-
flickering artifacts. */
|
|
177
|
-
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
|
178
|
-
position: absolute;
|
|
179
|
-
z-index: 6;
|
|
180
|
-
display: none;
|
|
181
|
-
outline: none;
|
|
182
|
-
}
|
|
183
|
-
.CodeMirror-vscrollbar {
|
|
184
|
-
right: 0; top: 0;
|
|
185
|
-
overflow-x: hidden;
|
|
186
|
-
overflow-y: scroll;
|
|
187
|
-
}
|
|
188
|
-
.CodeMirror-hscrollbar {
|
|
189
|
-
bottom: 0; left: 0;
|
|
190
|
-
overflow-y: hidden;
|
|
191
|
-
overflow-x: scroll;
|
|
192
|
-
}
|
|
193
|
-
.CodeMirror-scrollbar-filler {
|
|
194
|
-
right: 0; bottom: 0;
|
|
195
|
-
}
|
|
196
|
-
.CodeMirror-gutter-filler {
|
|
197
|
-
left: 0; bottom: 0;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
.CodeMirror-gutters {
|
|
201
|
-
position: absolute; left: 0; top: 0;
|
|
202
|
-
min-height: 100%;
|
|
203
|
-
z-index: 3;
|
|
204
|
-
}
|
|
205
|
-
.CodeMirror-gutter {
|
|
206
|
-
white-space: normal;
|
|
207
|
-
height: 100%;
|
|
208
|
-
display: inline-block;
|
|
209
|
-
vertical-align: top;
|
|
210
|
-
margin-bottom: -50px;
|
|
211
|
-
}
|
|
212
|
-
.CodeMirror-gutter-wrapper {
|
|
213
|
-
position: absolute;
|
|
214
|
-
z-index: 4;
|
|
215
|
-
background: none !important;
|
|
216
|
-
border: none !important;
|
|
217
|
-
}
|
|
218
|
-
.CodeMirror-gutter-background {
|
|
219
|
-
position: absolute;
|
|
220
|
-
top: 0; bottom: 0;
|
|
221
|
-
z-index: 4;
|
|
222
|
-
}
|
|
223
|
-
.CodeMirror-gutter-elt {
|
|
224
|
-
position: absolute;
|
|
225
|
-
cursor: default;
|
|
226
|
-
z-index: 4;
|
|
227
|
-
}
|
|
228
|
-
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
|
|
229
|
-
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
|
|
230
|
-
|
|
231
|
-
.CodeMirror-lines {
|
|
232
|
-
cursor: text;
|
|
233
|
-
min-height: 1px; /* prevents collapsing before first draw */
|
|
234
|
-
}
|
|
235
|
-
.CodeMirror pre.CodeMirror-line,
|
|
236
|
-
.CodeMirror pre.CodeMirror-line-like {
|
|
237
|
-
/* Reset some styles that the rest of the page might have set */
|
|
238
|
-
-moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
|
|
239
|
-
border-width: 0;
|
|
240
|
-
background: transparent;
|
|
241
|
-
font-family: inherit;
|
|
242
|
-
font-size: inherit;
|
|
243
|
-
margin: 0;
|
|
244
|
-
white-space: pre;
|
|
245
|
-
word-wrap: normal;
|
|
246
|
-
line-height: inherit;
|
|
247
|
-
color: inherit;
|
|
248
|
-
z-index: 2;
|
|
249
|
-
position: relative;
|
|
250
|
-
overflow: visible;
|
|
251
|
-
-webkit-tap-highlight-color: transparent;
|
|
252
|
-
-webkit-font-variant-ligatures: contextual;
|
|
253
|
-
font-variant-ligatures: contextual;
|
|
254
|
-
}
|
|
255
|
-
.CodeMirror-wrap pre.CodeMirror-line,
|
|
256
|
-
.CodeMirror-wrap pre.CodeMirror-line-like {
|
|
257
|
-
word-wrap: break-word;
|
|
258
|
-
white-space: pre-wrap;
|
|
259
|
-
word-break: normal;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.CodeMirror-linebackground {
|
|
263
|
-
position: absolute;
|
|
264
|
-
left: 0; right: 0; top: 0; bottom: 0;
|
|
265
|
-
z-index: 0;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
.CodeMirror-linewidget {
|
|
269
|
-
position: relative;
|
|
270
|
-
z-index: 2;
|
|
271
|
-
padding: 0.1px; /* Force widget margins to stay inside of the container */
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
.CodeMirror-widget {}
|
|
275
|
-
|
|
276
|
-
.CodeMirror-rtl pre { direction: rtl; }
|
|
277
|
-
|
|
278
|
-
.CodeMirror-code {
|
|
279
|
-
outline: none;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
/* Force content-box sizing for the elements where we expect it */
|
|
283
|
-
.CodeMirror-scroll,
|
|
284
|
-
.CodeMirror-sizer,
|
|
285
|
-
.CodeMirror-gutter,
|
|
286
|
-
.CodeMirror-gutters,
|
|
287
|
-
.CodeMirror-linenumber {
|
|
288
|
-
-moz-box-sizing: content-box;
|
|
289
|
-
box-sizing: content-box;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
.CodeMirror-measure {
|
|
293
|
-
position: absolute;
|
|
294
|
-
width: 100%;
|
|
295
|
-
height: 0;
|
|
296
|
-
overflow: hidden;
|
|
297
|
-
visibility: hidden;
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
.CodeMirror-cursor {
|
|
301
|
-
position: absolute;
|
|
302
|
-
pointer-events: none;
|
|
303
|
-
}
|
|
304
|
-
.CodeMirror-measure pre { position: static; }
|
|
305
|
-
|
|
306
|
-
div.CodeMirror-cursors {
|
|
307
|
-
visibility: hidden;
|
|
308
|
-
position: relative;
|
|
309
|
-
z-index: 3;
|
|
310
|
-
}
|
|
311
|
-
div.CodeMirror-dragcursors {
|
|
312
|
-
visibility: visible;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
.CodeMirror-focused div.CodeMirror-cursors {
|
|
316
|
-
visibility: visible;
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
.CodeMirror-selected { background: #d9d9d9; }
|
|
320
|
-
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
|
|
321
|
-
.CodeMirror-crosshair { cursor: crosshair; }
|
|
322
|
-
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
|
|
323
|
-
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
|
|
324
|
-
|
|
325
|
-
.cm-searching {
|
|
326
|
-
background-color: #ffa;
|
|
327
|
-
background-color: rgba(255, 255, 0, .4);
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
/* Used to force a border model for a node */
|
|
331
|
-
.cm-force-border { padding-right: .1px; }
|
|
332
|
-
|
|
333
|
-
@media print {
|
|
334
|
-
/* Hide the cursor when printing */
|
|
335
|
-
.CodeMirror div.CodeMirror-cursors {
|
|
336
|
-
visibility: hidden;
|
|
337
|
-
}
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
/* See issue #2901 */
|
|
341
|
-
.cm-tab-wrap-hack:after { content: ''; }
|
|
342
|
-
|
|
343
|
-
/* Help users use markselection to safely style text background */
|
|
344
|
-
span.CodeMirror-selectedtext { background: none; }
|
|
345
|
-
|
|
346
|
-
/* neo theme for codemirror */
|
|
347
|
-
|
|
348
|
-
/* Color scheme */
|
|
349
|
-
|
|
350
|
-
.cm-s-neo.CodeMirror {
|
|
351
|
-
background-color:#ffffff;
|
|
352
|
-
color:#2e383c;
|
|
353
|
-
line-height:1.4375;
|
|
354
|
-
}
|
|
355
|
-
.cm-s-neo .cm-comment { color:#75787b; }
|
|
356
|
-
.cm-s-neo .cm-keyword, .cm-s-neo .cm-property { color:#1d75b3; }
|
|
357
|
-
.cm-s-neo .cm-atom,.cm-s-neo .cm-number { color:#75438a; }
|
|
358
|
-
.cm-s-neo .cm-node,.cm-s-neo .cm-tag { color:#9c3328; }
|
|
359
|
-
.cm-s-neo .cm-string { color:#b35e14; }
|
|
360
|
-
.cm-s-neo .cm-variable,.cm-s-neo .cm-qualifier { color:#047d65; }
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
/* Editor styling */
|
|
364
|
-
|
|
365
|
-
.cm-s-neo pre {
|
|
366
|
-
padding:0;
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
.cm-s-neo .CodeMirror-gutters {
|
|
370
|
-
border:none;
|
|
371
|
-
border-right:10px solid transparent;
|
|
372
|
-
background-color:transparent;
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
.cm-s-neo .CodeMirror-linenumber {
|
|
376
|
-
padding:0;
|
|
377
|
-
color:#e0e2e5;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
.cm-s-neo .CodeMirror-guttermarker { color: #1d75b3; }
|
|
381
|
-
.cm-s-neo .CodeMirror-guttermarker-subtle { color: #e0e2e5; }
|
|
382
|
-
|
|
383
|
-
.cm-s-neo .CodeMirror-cursor {
|
|
384
|
-
width: auto;
|
|
385
|
-
border: 0;
|
|
386
|
-
background: rgba(155,157,162,0.37);
|
|
387
|
-
z-index: 1;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.markdown-body img[align='right'],.markdown-body img[alt~='align-right']{float:right;margin-left:0.75rem}.markdown-body img[align='left'],.markdown-body img[alt~='align-left']{float:left;margin-right:0.75rem}.markdown-body img[width='80%'],.markdown-body img[align='middle'],.markdown-body img[alt~='align-center'],.markdown-body>img,.markdown-body figure>img{display:block}.markdown-body img{box-sizing:content-box;display:inline-block;vertical-align:middle;max-width:100%;margin-left:auto;margin-right:auto;border-style:none;outline:none !important}.markdown-body img[width='smart']{width:auto;max-width:100%;max-height:450px}.markdown-body img.border{border:1px solid rgba(0,0,0,0.2)}.markdown-body figure{margin:15px auto}.markdown-body figure figcaption{margin-top:8px;font-size:0.93em;font-style:italic;text-align:center}.markdown-body figure .img{display:inline-block}.markdown-body figure .img,.markdown-body figure .img>img:only-of-type{display:block}.markdown-body .lightbox.open{position:fixed;z-index:9999999;top:0;left:0;display:flex;flex-flow:nowrap column;justify-content:flex-start;align-items:center;width:100vw;height:100vh;overflow:hidden;overflow-y:scroll;background:rgba(255,255,255,0.966);user-select:none;margin-top:0;margin-bottom:0}.markdown-body .lightbox.open:after{position:fixed;top:1em;right:1em;content:'\f00d';display:inline-block;font:normal normal normal 2em/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0);display:inline-block;cursor:pointer;opacity:1;transform:scale(1.5);transition:0.3s 0.3s ease-in}.markdown-body .lightbox.open:not(.open):after{transform:scale(0);opacity:0}.markdown-body .lightbox.open .lightbox-inner{position:relative;display:inline-flex;justify-content:center;align-items:center;min-height:calc(100vh + 8px);margin:auto;padding:0;box-sizing:content-box}.markdown-body .lightbox.open img{width:auto !important;height:auto !important;min-width:unset !important;max-width:97.5vw !important;max-height:97.5vh !important}.markdown-body .lightbox.open img.border,.markdown-body .lightbox.open img:not([src$='.png']):not([src$='.svg']):not([src$='.jp2']):not([src$='.tiff']){box-shadow:0 0.5em 3em -1em rgba(0,0,0,0.2)}.markdown-body table{display:table;border-collapse:collapse;border-spacing:0;width:100%;color:var(--table-text)}.markdown-body table thead{color:var(--table-head-text, inherit)}.markdown-body table thead tr{background:var(--table-head, #f6f8fa)}.markdown-body table tr{background-color:var(--table-row, #fff)}.markdown-body table tr+tr{border-top:1px solid var(--table-edges, #dfe2e5)}.markdown-body table th,.markdown-body table thead td{font-weight:600}.markdown-body table th:empty,.markdown-body table thead td:empty{padding:0}.markdown-body table td,.markdown-body table th{padding:0;color:inherit;vertical-align:middle;border:1px solid var(--table-edges, #dfe2e5);padding:6px 13px}.markdown-body table td>:first-child,.markdown-body table td>:only-child,.markdown-body table th>:first-child,.markdown-body table th>:only-child{margin-top:0 !important}.markdown-body table td>:last-child,.markdown-body table td>:only-child,.markdown-body table th>:last-child,.markdown-body table th>:only-child{margin-bottom:0 !important}.markdown-body table:not(.plain) tr:nth-child(2n){background-color:var(--table-stripe, #fbfcfd)}.markdown-body .rdmd-table{display:block;position:relative}.markdown-body .rdmd-table-inner{box-sizing:content-box;min-width:100%;overflow:auto;width:100%}.markdown-body .rdmd-table table{border:1px solid var(--table-edges, #dfe2e5)}.markdown-body .rdmd-table table:only-child{margin:0 !important}.markdown-body .rdmd-table table:only-child thead th{background:inherit}.markdown-body .rdmd-table table:only-child td:last-child,.markdown-body .rdmd-table table:only-child th:last-child{border-right:none}.markdown-body .rdmd-table table:only-child thead tr,.markdown-body .rdmd-table table:only-child thead th:last-child{box-shadow:3px 0 0 var(--table-head)}.toc-list .glossary-tooltip{pointer-events:none}.markdown-body code,.markdown-body kbd,.markdown-body pre{font-family:SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;font-family:var(--md-code-font, SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace);font-size:1em}.markdown-body code,.markdown-body pre{font-size:12px}.markdown-body pre{margin-bottom:0;margin-top:0}.markdown-body code{background-color:#F6F8FA;background-color:var(--md-code-background, #F6F8FA);border-radius:3px;color:var(--md-code-text);font-size:85%;margin:0;padding:.2em .4em}.markdown-body code>div[class*="cm-"]{display:inherit}.markdown-body pre{word-wrap:normal}.markdown-body pre>code{background:0 0;border:0;font-size:100%;margin:0;padding:0;white-space:pre;word-break:normal}.markdown-body pre{background-color:#F6F8FA;background-color:var(--md-code-background, #F6F8FA);color:inherit;color:var(--md-code-text, inherit);border-radius:3px;border-radius:var(--markdown-radius, 3px);border-radius:var(--md-code-radius, var(--markdown-radius, 3px));font-size:85%;line-height:1.45;overflow:auto;padding:1em}.markdown-body pre code.theme-dark{background-color:#242E34;background-color:var(--md-code-background, #242E34)}.markdown-body pre code{background-color:transparent;border:0;display:inline;line-height:inherit;margin:0;max-width:auto;overflow:visible;padding:0;word-wrap:normal}.markdown-body kbd{background-color:#F6F8FA;background-color:var(--d-code-background, #F6F8FA);border:1px solid #d1d5da;border-bottom-color:#c6cbd1;border-radius:3px;box-shadow:inset 0 -1px 0 #c6cbd1;color:#444d56;display:inline-block;font-size:11px;line-height:10px;padding:3px 5px;vertical-align:middle}.markdown-body button.rdmd-code-copy{DISPLAY:none !important}.markdown-body button.rdmd-code-copy{-webkit-appearance:unset;margin:.5em .6em 0 0;padding:.25em .7em;cursor:copy;font:inherit;color:inherit;color:var(--md-code-text, inherit);border:none;border-radius:3px;outline:none !important;background:inherit;background:var(--md-code-background, inherit);box-shadow:inset 0 0 0 1px rgba(170,170,170,0.66),-1px 2px 6px -3px rgba(0,0,0,0.1);transition:.15s ease-out}.markdown-body button.rdmd-code-copy:not(:hover):before,.markdown-body button.rdmd-code-copy:not(:hover):after{opacity:.66}.markdown-body button.rdmd-code-copy:hover:not(:active){box-shadow:inset 0 0 0 1px rgba(139,139,139,0.75),-1px 2px 6px -3px rgba(0,0,0,0.2)}.markdown-body button.rdmd-code-copy:active{box-shadow:inset 0 0 0 1px rgba(139,139,139,0.5),inset 1px 4px 6px -2px rgba(0,0,0,0.175)}.markdown-body button.rdmd-code-copy:active:before,.markdown-body button.rdmd-code-copy:active:after{opacity:.75}.markdown-body button.rdmd-code-copy:before,.markdown-body button.rdmd-code-copy:after{display:inline-block;font:normal normal normal 1em/1 "Font Awesome 5 Free", "FontAwesome";text-rendering:auto;-webkit-font-smoothing:antialiased;line-height:2;font-family:'ReadMe-Icons';font-variant-ligatures:discretionary-ligatures;font-feature-settings:"liga"}.markdown-body button.rdmd-code-copy:before{content:"\e6c9";font-weight:800;transition:.3s .15s ease}.markdown-body button.rdmd-code-copy:after{content:"\e942" !important;font-weight:900 !important;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) scale(0.33);opacity:0 !important;transition:.3s 0s ease}.markdown-body button.rdmd-code-copy_copied{pointer-events:none}.markdown-body button.rdmd-code-copy_copied,.markdown-body button.rdmd-code-copy_copied *{color:green !important;color:var(--md-code-text, green) !important;opacity:1}.markdown-body button.rdmd-code-copy_copied:before{transition:.3s 0s ease;transform:scale(0.33);opacity:0 !important}.markdown-body button.rdmd-code-copy_copied:after{transition:.3s .15s ease;transform:translate(-50%, -50%) scale(1);opacity:1 !important}.markdown-body pre{position:relative}.markdown-body pre>code{background:inherit}.markdown-body pre>code.theme-dark{color:white}.markdown-body pre button.rdmd-code-copy{display:inline-block !important;position:absolute;right:0;top:0}.markdown-body pre{overflow:hidden;padding:0}.markdown-body pre>code{display:block !important;overflow:auto;padding:1em;max-height:90vh}.markdown-body pre:hover button.rdmd-code-copy:not(:hover){transition-delay:.4s}.markdown-body pre:not(:hover) button.rdmd-code-copy:not(.rdmd-code-copy_copied){opacity:0 !important}.CodeTabs{color:#333;color:var(--md-code-text, #333);border-radius:var(--md-code-radius, var(--markdown-radius, 3px)) !important;overflow:hidden}.CodeTabs.theme-dark{color:white;color:var(--md-code-text, white)}.CodeTabs.theme-dark .CodeTabs-toolbar{background:#373737;background:var(--md-code-tabs, #373737)}.CodeTabs-toolbar{background:#ebedef;background:var(--md-code-tabs, #ebedef);display:flex;flex-flow:row nowrap;overflow:hidden;overflow-x:auto;-ms-overflow-style:none;-webkit-overflow-scrolling:touch}.CodeTabs-toolbar::-webkit-scrollbar{display:none}.CodeTabs-toolbar button{white-space:nowrap;transition:.123s ease;-webkit-appearance:none;appearance:none;display:inline-block;line-height:2;padding:.5em 1em;border:none;background:transparent;outline:none;color:inherit;font:inherit;font-size:.75em;cursor:pointer}.CodeTabs.CodeTabs_initial .CodeTabs-toolbar button:first-child,.CodeTabs-toolbar button.CodeTabs_active{background:#F6F8FA;background:var(--md-code-background, #F6F8FA);color:black;color:var(--md-code-text, black);pointer-events:none}.CodeTabs.theme-dark.CodeTabs_initial .CodeTabs-toolbar button:first-child,.CodeTabs.theme-dark .CodeTabs-toolbar button.CodeTabs_active{background:#242E34;background:var(--md-code-background, #242E34);color:white;color:var(--md-code-text, white)}.CodeTabs-toolbar button:not(.CodeTabs_active):hover{background:rgba(0,0,0,0.075)}.CodeTabs pre{border-radius:0 0 var(--md-code-radius, var(--markdown-radius, 3px)) var(--md-code-radius, var(--markdown-radius, 3px)) !important;background:#F6F8FA;background:var(--md-code-background, #F6F8FA);margin-bottom:0}.CodeTabs pre:not(.CodeTabs_active){display:none}.CodeTabs.theme-dark pre{background:#242E34;background:var(--md-code-background, #242E34)}.CodeTabs.CodeTabs_initial pre:first-child{display:block}.callout{--emoji: 1em;--icon-font: FontAwesome;border-top-right-radius:var(--markdown-radius);border-bottom-right-radius:var(--markdown-radius)}.callout.callout{--background: #f8f8f9;--border: #8b939c}.callout.callout{background:var(--background);border-color:var(--border);color:var(--text);padding:1.33rem}.callout.callout_info{--background: #e3edf2;--title: #46b8da;--border: #5bc0de}.callout.callout_warn,.callout.callout_warning{--background: #fcf8f2;--title: #eea236;--border: #f0ad4e}.callout.callout_ok,.callout.callout_okay,.callout.callout_success{--background: #f3f8f3;--title: #489e49;--border: #50af51}.callout.callout_err,.callout.callout_error{--background: #fdf7f7;--title: #d43f3a;--border: #d9534f}.callout.callout>*{margin-left:1.33rem;position:relative}.callout.callout ul,.callout.callout ol{padding-left:1.3em}.callout.callout a{color:inherit}.callout.callout hr{border-color:var(--border, var(--markdown-edge, #eee))}.callout.callout blockquote{color:var(--text);border-color:var(--border);border-width:3px;padding:0 0 0 .8em}.callout.callout .callout-heading{color:var(--title, --text);margin-bottom:calc(1.33rem * .5)}.callout.callout .callout-heading:only-child{margin-bottom:0}.callout.callout .callout-heading.empty{float:left;margin-top:calc(1.33rem * .5)}.callout.callout .callout-heading.empty .callout-icon{line-height:0}.callout.callout .callout-heading>*{color:inherit;margin:0}.callout.callout .callout-heading:before{position:absolute;right:100%;width:2.4em;text-align:center;font:normal normal normal 1em/1 FontAwesome}.callout.callout .callout-icon{float:left;margin-left:calc(-1.33rem - .5em);margin-right:-.25rem}.callout-icon{font-size:var(--emoji, 0);color:var(--icon-color, inherit) !important}.callout-icon:before{content:var(--icon);font-family:var(--icon-font);font-size:var(--icon-size, 1rem);font-weight:var(--icon-weight, 400);position:absolute;top:50%;transform:translate(-50%, -50%);display:inline-block;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.rdmdCallouts--useIconFont .callout{--emoji: unset}.rdmdCallouts--useIconFont .callout_okay{--icon: "\f164"}.rdmdCallouts--useIconFont .callout_info{--icon: "\f05a"}.rdmdCallouts--useIconFont .callout_warn{--icon: "\f071"}.rdmdCallouts--useIconFont .callout_error{--icon: "\f06a"}.rdmdCallouts--useIconFont .callout_default{--emoji: 1rem}.heading.heading{display:flex;justify-content:flex-start;align-items:center;position:relative}.heading.heading .heading-text{flex:1 100%}.heading.heading .heading-anchor-deprecated{position:absolute;top:0}.heading.heading .heading-anchor{top:-1rem !important}.heading.heading .heading-anchor,.heading.heading .heading-anchor-icon{position:absolute !important;display:inline !important;order:-1;right:100%;top:unset !important;margin-right:-.8rem;padding:.8rem .2rem .8rem 0 !important;font-size:.8rem !important;text-decoration:none;color:inherit;transform:translateX(-100%);transition:.2s ease}.heading.heading .heading-anchor:hover,.heading.heading .heading-anchor-icon:hover{opacity:1}.heading.heading:not(:hover) .heading-anchor-icon{opacity:0}.markdown-body .embed{padding:15px;color:var(--md-code-text, inherit);border-radius:var(--md-code-radius, var(--markdown-radius, 3px));border-radius:3px;background:transparent;box-shadow:inset 0 0 0 1px rgba(0,0,0,0.15);transition:.3s ease}.markdown-body .embed:hover{background:var(--md-code-background, #f6f8fa);box-shadow:inset 0 0 0 1px rgba(0,0,0,0.1)}.markdown-body>.embed_hasImg:nth-of-type(odd){margin-right:30px;padding-right:0}.markdown-body>.embed_hasImg:nth-of-type(odd) .embed-link{flex-direction:row-reverse}.markdown-body>.embed_hasImg:nth-of-type(odd) .embed-img{margin-left:.88em;margin-right:-30px;box-shadow:-0.3em 0.3em 0.9em -0.3em rgba(0,0,0,0.15)}.markdown-body>.embed_hasImg:nth-of-type(even){margin-left:30px;padding-left:0}.markdown-body>.embed_hasImg:nth-of-type(even) .embed-img{margin-left:-30px}.markdown-body .embed:empty{display:none}.markdown-body .embed-media{display:flex;justify-content:center}.markdown-body .embed-media>:only-child{flex:1;margin:-15px;border-radius:0 !important}.markdown-body .embed-link{display:flex;align-items:center;color:var(--markdown-text, #333);text-decoration:none !important}.markdown-body .embed-body{flex:1;line-height:1.3}.markdown-body .embed-body,.markdown-body .embed-body .embed-title{font-size:1.15em;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.markdown-body .embed-body .embed-provider{display:block;text-decoration-color:transparent !important;opacity:.88}.markdown-body .embed-body-url{opacity:.75}.markdown-body .embed-provider{font-size:0.8em;line-height:1.6;transition:.2 ease}.markdown-body .embed-provider code:only-child{display:block;width:100%;font-size:1.15em;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;background:transparent;margin:0;padding:0;font-size:inherit !important}.markdown-body .embed-provider code{opacity:0.8}.markdown-body .embed-img{width:5em;max-width:5em;margin:0 .88em 0 0;padding:4px;background:white;border:1px solid rgba(0,0,0,0.15);border-radius:3px;transition:inherit;box-shadow:0.3em 0.3em 0.9em -0.3em rgba(0,0,0,0.15)}.markdown-body .embed:not(:hover) .embed-img{box-shadow:0 0.25em 1em -0.5em rgba(0,0,0,0.133)}.markdown-body .embed:hover .embed-img{border:1px solid rgba(0,0,0,0.2)}.markdown-body .embed-favicon{width:12px !important;height:12px !important;margin-top:4px;margin-right:6px;margin-bottom:12px}.GlossaryItem-trigger{border-bottom:1px solid #737c83;border-style:dotted;border-top:none;border-left:none;border-right:none;cursor:pointer}.GlossaryItem-tooltip-content{--GlossaryItem-bg: var(--color-bg-page, var(--white));--GlossaryItem-color: var(--color-text-default, var(--gray20));--GlossaryItem-shadow: var(--box-shadow-menu-light, 0 5px 10px rgba(0, 0, 0, .05),
|
|
391
|
-
0 2px 6px rgba(0, 0, 0, .025),
|
|
392
|
-
0 1px 3px rgba(0, 0, 0, .025));background-color:var(--GlossaryItem-bg);border:1px solid var(--color-border-default, rgba(0,0,0,0.1));border-radius:var(--border-radius);box-shadow:var(--GlossaryItem-shadow);color:var(--GlossaryItem-color);font-size:15px;font-weight:400;line-height:1.5;padding:15px;text-align:left;width:350px}[data-color-mode='dark'] .GlossaryItem-tooltip-content{--GlossaryItem-bg: var(--gray15);--GlossaryItem-color: var(--color-text-default, var(--white));--GlossaryItem-shadow: var(--box-shadow-menu-dark, 0 1px 3px rgba(0, 0, 0, 0.025),
|
|
393
|
-
0 2px 6px rgba(0, 0, 0, 0.025),
|
|
394
|
-
0 5px 10px rgba(0, 0, 0, 0.05))
|
|
395
|
-
}@media (prefers-color-scheme: dark){[data-color-mode='auto'] .GlossaryItem-tooltip-content{--GlossaryItem-bg: var(--Tooltip-bg, var(--gray0));--GlossaryItem-color: var(--color-text-default, var(--white));--GlossaryItem-shadow: var(--box-shadow-menu-dark, 0 1px 3px rgba(0, 0, 0, 0.025),
|
|
396
|
-
0 2px 6px rgba(0, 0, 0, 0.025),
|
|
397
|
-
0 5px 10px rgba(0, 0, 0, 0.05))
|
|
398
|
-
}}.GlossaryItem-term{font-style:italic}.tippy-box[data-animation='fade'][data-state='hidden']{opacity:0}:root{--markdown-text: inherit;--markdown-title: inherit;--markdown-title-font: inherit;--markdown-font: inherit;--markdown-font-size: inherit;--markdown-line-height: 1.5}.field-description,.markdown-body{color:var(--markdown-text);font-family:var(--markdown-font);line-height:var(--markdown-line-height);position:relative;text-size-adjust:100%;word-wrap:break-word;font-size:var(--markdown-font-size, 14px)}.field-description::before,.field-description::after,.markdown-body::before,.markdown-body::after{content:'';display:table}.field-description::after,.markdown-body::after{clear:both}.field-description ul,.markdown-body ul{list-style:initial}.field-description .anchor,.markdown-body .anchor{float:left;line-height:1;margin-left:-20px;padding-right:4px}.field-description .anchor:focus,.markdown-body .anchor:focus{outline:0}.field-description h1:hover .anchor,.field-description h2:hover .anchor,.field-description h3:hover .anchor,.field-description h4:hover .anchor,.field-description h5:hover .anchor,.field-description h6:hover .anchor,.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.field-description details,.markdown-body details{display:block}.field-description summary,.markdown-body summary{display:list-item}.field-description a,.markdown-body a{transition:0.15s ease}.field-description a:hover,.markdown-body a:hover{text-decoration:underline}.field-description a:active,.field-description a:hover,.markdown-body a:active,.markdown-body a:hover{outline-width:0}.field-description a:not([href]),.markdown-body a:not([href]){color:inherit;text-decoration:none}.field-description strong,.markdown-body strong{font-weight:inherit;font-weight:bolder}.field-description h1,.markdown-body h1{font-size:2em;margin:0.67em 0}.field-description hr,.markdown-body hr{background:transparent;border-bottom:1px solid var(--markdown-edge, #dfe2e5);border-width:0 0 1px;box-sizing:content-box;height:0;margin:15px 0;overflow:hidden}.field-description hr::before,.field-description hr::after,.markdown-body hr::before,.markdown-body hr::after{content:'';display:table}.field-description hr::after,.markdown-body hr::after{clear:both}.field-description input,.markdown-body input{font:inherit;margin:0}.field-description input,.markdown-body input{overflow:visible}.field-description [type='checkbox'],.markdown-body [type='checkbox']{box-sizing:border-box;padding:0}.field-description *,.markdown-body *{box-sizing:border-box}.field-description input,.markdown-body input{font-family:inherit;font-size:inherit;line-height:inherit}.field-description strong,.markdown-body strong{font-weight:600}.field-description details summary,.markdown-body details summary{cursor:pointer}.field-description h1,.field-description h2,.field-description h3,.field-description h4,.field-description h5,.field-description h6,.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{color:var(--markdown-title);font-family:var(--markdown-title-font);font-size:var(--markdown-title-size);font-weight:var(--markdown-title-weight, 600);line-height:1.25;margin-bottom:var(--markdown-title-marginBottom, 1rem);margin-top:var(--markdown-title-marginTop, 1em)}.field-description h1,.markdown-body h1{font-size:1.75em;font-size:var(--markdown-title-size, 1.75em)}.field-description h2,.markdown-body h2{font-size:1.5em;font-size:var(--markdown-title-size, 1.5em)}.field-description h1,.markdown-body h1{font-weight:700;font-weight:var(--markdown-title-weight, 700)}.field-description h2,.markdown-body h2{font-weight:600;font-weight:var(--markdown-title-weight, 600)}.field-description h3,.field-description h4,.markdown-body h3,.markdown-body h4{font-weight:600;font-weight:var(--markdown-title-weight, 600)}.field-description h3,.markdown-body h3{font-size:1.25em;font-size:var(--markdown-title-size, 1.25em)}.field-description h4,.markdown-body h4{font-size:1em;font-size:var(--markdown-title-size, 1em)}.field-description h5,.field-description h6,.markdown-body h5,.markdown-body h6{font-weight:600;font-weight:var(--markdown-title-weight, 600)}.field-description h5,.markdown-body h5{font-size:0.875em;font-size:var(--markdown-title-size, 0.875em)}.field-description h6,.markdown-body h6{color:var(--markdown-title, #6a737d);font-size:0.85em;font-size:var(--markdown-title-size, 0.85em)}.field-description p,.field-description .p,.markdown-body p,.markdown-body .p{margin-bottom:10px;margin-top:0}.field-description blockquote,.markdown-body blockquote{margin:0}.field-description ol,.field-description ul,.markdown-body ol,.markdown-body ul{margin-bottom:0;margin-top:0;padding-left:0}.field-description ol ol,.field-description ul ol,.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-roman}.field-description ol ol ol,.field-description ol ul ol,.field-description ul ol ol,.field-description ul ul ol,.markdown-body ol ol ol,.markdown-body ol ul ol,.markdown-body ul ol ol,.markdown-body ul ul ol{list-style-type:lower-alpha}.field-description dd,.markdown-body dd{margin-left:0}.field-description input::-webkit-inner-spin-button,.field-description input::-webkit-outer-spin-button,.markdown-body input::-webkit-inner-spin-button,.markdown-body input::-webkit-outer-spin-button{appearance:none;appearance:none;margin:0}.field-description>:first-child,.markdown-body>:first-child{margin-top:0 !important}.field-description>:last-child,.markdown-body>:last-child{margin-bottom:0 !important}.field-description blockquote,.field-description dl,.field-description ol,.field-description p,.field-description pre,.field-description table,.field-description ul,.markdown-body blockquote,.markdown-body dl,.markdown-body ol,.markdown-body p,.markdown-body pre,.markdown-body table,.markdown-body ul{margin-bottom:15px;margin-top:0}.field-description blockquote,.markdown-body blockquote{border-left:0.25em solid #dfe2e5;color:#6a737d;display:block;padding:0 1em}.field-description blockquote>:first-child,.markdown-body blockquote>:first-child{margin-top:0}.field-description blockquote>:last-child,.markdown-body blockquote>:last-child{margin-bottom:0}.field-description ol,.field-description ul,.markdown-body ol,.markdown-body ul{padding-left:2em}.field-description ol ol,.field-description ol ul,.field-description ul ol,.field-description ul ul,.markdown-body ol ol,.markdown-body ol ul,.markdown-body ul ol,.markdown-body ul ul{margin-bottom:0;margin-top:0}.field-description li,.markdown-body li{clear:both;word-wrap:break-all}.field-description li>p,.markdown-body li>p{margin-top:1em}.field-description li+li,.markdown-body li+li{margin-top:0.25em}.field-description dl,.markdown-body dl{padding:0}.field-description dl dt,.markdown-body dl dt{font-size:1em;font-style:italic;font-weight:600;margin-top:1em;padding:0}.field-description dl dd,.markdown-body dl dd{margin-bottom:1em;padding:0 1em}.field-description :checked+.radio-label,.markdown-body :checked+.radio-label{border-color:var(--project-color-primary);position:relative;z-index:1}.field-description .task-list-item,.markdown-body .task-list-item{list-style-type:none}.field-description .task-list-item+.task-list-item,.markdown-body .task-list-item+.task-list-item{margin-top:3px}.field-description .task-list-item input,.markdown-body .task-list-item input{margin:0 0.2em 0.25em -1.6em;vertical-align:middle}.field-description p.blank-line,.markdown-body p.blank-line{height:1.5em}.field-description h5,.field-description h6,.markdown-body h5,.markdown-body h6{font-size:0.9em}.field-description blockquote h1:last-child,.field-description blockquote h2:last-child,.markdown-body blockquote h1:last-child,.markdown-body blockquote h2:last-child{border-bottom:0}.field-description>*,.markdown-body>*{margin-bottom:15px !important;margin-top:15px}.field-description .task-list-item input,.markdown-body .task-list-item input{margin:0 0.5em 0.25em -1.25em}.field-description a[href],.field-description a:not([href='']),.markdown-body a[href],.markdown-body a:not([href='']){text-decoration:underline}
|
|
399
|
-
|