mystmd 1.3.15__tar.gz → 1.3.16__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: mystmd
3
- Version: 1.3.15
3
+ Version: 1.3.16
4
4
  Summary: Command line tools for MyST Markdown
5
5
  Project-URL: Homepage, https://github.com/jupyter-book/mystmd
6
6
  Project-URL: Bug Tracker, https://github.com/jupyter-book/mystmd/issues
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mystmd",
3
- "version": "1.3.15",
3
+ "version": "1.3.16",
4
4
  "description": "Command line tools for MyST Markdown",
5
5
  "author": "Rowan Cockett <rowan@curvenote.com>",
6
6
  "license": "MIT",
@@ -45,6 +45,6 @@
45
45
  "commander": "^10.0.1",
46
46
  "core-js": "^3.31.1",
47
47
  "js-yaml": "^4.1.0",
48
- "myst-cli": "^1.3.15"
48
+ "myst-cli": "^1.3.16"
49
49
  }
50
50
  }
@@ -77868,7 +77868,7 @@ var require_blockquote = __commonJS({
77868
77868
  "../myst-parser/node_modules/markdown-it/lib/rules_block/blockquote.js"(exports2, module2) {
77869
77869
  "use strict";
77870
77870
  var isSpace = require_utils5().isSpace;
77871
- module2.exports = function blockquote6(state, startLine, endLine, silent) {
77871
+ module2.exports = function blockquote5(state, startLine, endLine, silent) {
77872
77872
  var adjustTab, ch, i2, initial, l, lastLineEmpty, lines, nextLine, offset, oldBMarks, oldBSCount, oldIndent, oldParentType, oldSCount, oldTShift, spaceAfterMarker, terminate, terminatorRules, token, isOutdented, oldLineMax = state.lineMax, pos = state.bMarks[startLine] + state.tShift[startLine], max = state.eMarks[startLine];
77873
77873
  if (state.sCount[startLine] - state.blkIndent >= 4) {
77874
77874
  return false;
@@ -193891,7 +193891,7 @@ var {
193891
193891
  } = import_index.default;
193892
193892
 
193893
193893
  // src/version.ts
193894
- var version = "1.3.15";
193894
+ var version = "1.3.16";
193895
193895
  var version_default = version;
193896
193896
 
193897
193897
  // ../myst-cli/dist/build/build.js
@@ -205348,8 +205348,8 @@ function transformGitHubBracketedAdmonition(node3) {
205348
205348
  return true;
205349
205349
  }
205350
205350
  function admonitionBlockquoteTransform(tree) {
205351
- const blockquote6 = selectAll("blockquote", tree);
205352
- blockquote6.forEach((node3) => {
205351
+ const blockquote5 = selectAll("blockquote", tree);
205352
+ blockquote5.forEach((node3) => {
205353
205353
  [transformGitHubBracketedAdmonition, transformGitHubBoldTitle].reduce((complete, fn) => complete || fn(node3), false);
205354
205354
  });
205355
205355
  }
@@ -278455,24 +278455,24 @@ var ALGORITHM_HANDLERS = {
278455
278455
  state.openNode("proof", { kind: "algorithm" });
278456
278456
  state.renderChildren(node3);
278457
278457
  state.closeParagraph();
278458
- const proof = state.top();
278459
- const caption3 = select("caption", proof);
278458
+ const proof2 = state.top();
278459
+ const caption3 = select("caption", proof2);
278460
278460
  if (caption3) {
278461
278461
  caption3.type = "admonitionTitle";
278462
278462
  caption3.children = (_a6 = caption3.children) === null || _a6 === void 0 ? void 0 : _a6[0].children;
278463
278463
  }
278464
278464
  if (caption3 === null || caption3 === void 0 ? void 0 : caption3.label) {
278465
- proof.label = caption3.label;
278465
+ proof2.label = caption3.label;
278466
278466
  delete caption3.label;
278467
278467
  delete caption3.identifier;
278468
278468
  }
278469
- if (proof.label) {
278470
- const { label, identifier } = (_b = normalizeLabel(proof.label)) !== null && _b !== void 0 ? _b : {};
278471
- proof.label = label;
278472
- proof.identifier = identifier;
278473
- proof.enumerated = true;
278469
+ if (proof2.label) {
278470
+ const { label, identifier } = (_b = normalizeLabel(proof2.label)) !== null && _b !== void 0 ? _b : {};
278471
+ proof2.label = label;
278472
+ proof2.identifier = identifier;
278473
+ proof2.enumerated = true;
278474
278474
  }
278475
- numberParagraphsAsLines(proof);
278475
+ numberParagraphsAsLines(proof2);
278476
278476
  state.closeNode();
278477
278477
  },
278478
278478
  env_algorithmic(node3, state) {
@@ -278884,9 +278884,16 @@ var FIGURE_HANDLERS = {
278884
278884
  },
278885
278885
  macro_centering: centering,
278886
278886
  macro_includegraphics(node3, state) {
278887
+ var _a6;
278887
278888
  state.closeParagraph();
278888
278889
  const url = texToText(getArguments(node3, "group"));
278889
- state.pushNode(u2("image", { url }));
278890
+ const args = (_a6 = getArguments(node3, "argument")) === null || _a6 === void 0 ? void 0 : _a6[0].content;
278891
+ if (args.length === 4 && args[0].content === "width" && args[1].content === "=" && Number.isFinite(Number.parseFloat(args[2].content))) {
278892
+ const width = `${Math.round(Number.parseFloat(args[2].content) * 100)}%`;
278893
+ state.pushNode(u2("image", { url, width }));
278894
+ } else {
278895
+ state.pushNode(u2("image", { url }));
278896
+ }
278890
278897
  },
278891
278898
  macro_caption: renderCaption,
278892
278899
  macro_captionof: renderCaption,
@@ -282087,26 +282094,43 @@ var iframeDirective = {
282087
282094
  align: {
282088
282095
  type: String,
282089
282096
  doc: "The alignment of the iframe in the page. Choose one of `left`, `center` or `right`"
282097
+ },
282098
+ placeholder: {
282099
+ type: String,
282100
+ doc: "A placeholder image for the iframe in static exports."
282090
282101
  }
282091
282102
  },
282092
282103
  body: { type: "myst", doc: "If provided, this will be the iframe caption." },
282093
282104
  run(data) {
282094
- var _a6, _b, _c, _d2;
282105
+ var _a6, _b, _c, _d2, _e, _f, _g, _h, _j;
282095
282106
  const iframe3 = {
282096
282107
  type: "iframe",
282097
282108
  src: data.arg,
282098
282109
  width: (_a6 = data.options) === null || _a6 === void 0 ? void 0 : _a6.width,
282099
282110
  align: (_b = data.options) === null || _b === void 0 ? void 0 : _b.align
282100
282111
  };
282112
+ if ((_c = data.options) === null || _c === void 0 ? void 0 : _c.placeholder) {
282113
+ iframe3.children = [
282114
+ {
282115
+ type: "image",
282116
+ placeholder: true,
282117
+ url: data.options.placeholder,
282118
+ alt: (_d2 = data.options) === null || _d2 === void 0 ? void 0 : _d2.alt,
282119
+ width: (_e = data.options) === null || _e === void 0 ? void 0 : _e.width,
282120
+ height: (_f = data.options) === null || _f === void 0 ? void 0 : _f.height,
282121
+ align: (_g = data.options) === null || _g === void 0 ? void 0 : _g.align
282122
+ }
282123
+ ];
282124
+ }
282101
282125
  if (!data.body) {
282102
- iframe3.class = (_c = data.options) === null || _c === void 0 ? void 0 : _c.class;
282126
+ iframe3.class = (_h = data.options) === null || _h === void 0 ? void 0 : _h.class;
282103
282127
  addCommonDirectiveOptions(data, iframe3);
282104
282128
  return [iframe3];
282105
282129
  }
282106
282130
  const container4 = {
282107
282131
  type: "container",
282108
282132
  kind: "figure",
282109
- class: (_d2 = data.options) === null || _d2 === void 0 ? void 0 : _d2.class,
282133
+ class: (_j = data.options) === null || _j === void 0 ? void 0 : _j.class,
282110
282134
  children: [iframe3, { type: "caption", children: data.body }]
282111
282135
  };
282112
282136
  addCommonDirectiveOptions(data, container4);
@@ -289095,7 +289119,7 @@ var proofDirective = {
289095
289119
  const nonumber = (_b = (_a6 = data.options) === null || _a6 === void 0 ? void 0 : _a6.nonumber) !== null && _b !== void 0 ? _b : false;
289096
289120
  const rawLabel = (_c = data.options) === null || _c === void 0 ? void 0 : _c.label;
289097
289121
  const { label, identifier } = normalizeLabel(rawLabel) || {};
289098
- const proof = {
289122
+ const proof2 = {
289099
289123
  type: "proof",
289100
289124
  kind: data.name !== "proof" ? data.name.replace("prf:", "") : void 0,
289101
289125
  label,
@@ -289104,7 +289128,7 @@ var proofDirective = {
289104
289128
  enumerated: !nonumber,
289105
289129
  children
289106
289130
  };
289107
- return [proof];
289131
+ return [proof2];
289108
289132
  }
289109
289133
  };
289110
289134
 
@@ -289380,7 +289404,7 @@ var import_node_path15 = __toESM(require("path"), 1);
289380
289404
  var import_nbtx = __toESM(require_cjs2(), 1);
289381
289405
 
289382
289406
  // ../myst-cli/dist/version.js
289383
- var version2 = "1.3.15";
289407
+ var version2 = "1.3.16";
289384
289408
  var version_default2 = version2;
289385
289409
 
289386
289410
  // ../myst-cli/dist/utils/headers.js
@@ -306771,18 +306795,35 @@ var containerHandler2 = (node3, state) => {
306771
306795
  source: "myst-to-typst"
306772
306796
  });
306773
306797
  }
306798
+ const flatCaptions = captions.map((cap2) => cap2.children).filter(Boolean).flat();
306799
+ if (node3.kind === "quote") {
306800
+ const prevIsInBlockquote = state.data.isInBlockquote;
306801
+ state.data.isInBlockquote = true;
306802
+ state.write("#quote(block: true");
306803
+ if (flatCaptions.length > 0) {
306804
+ state.write(", attribution: [");
306805
+ state.renderChildren(flatCaptions);
306806
+ state.write("])[");
306807
+ } else {
306808
+ state.write(")[");
306809
+ }
306810
+ state.renderChildren(nonCaptions);
306811
+ state.write("]");
306812
+ state.data.isInBlockquote = prevIsInBlockquote;
306813
+ return;
306814
+ }
306774
306815
  if (nonCaptions && nonCaptions.length > 1) {
306775
306816
  const allSubFigs = nonCaptions.filter((item) => item.type === "container").length === nonCaptions.length;
306776
306817
  state.useMacro('#import "@preview/subpar:0.1.1"');
306777
306818
  state.write(`#show figure: set block(breakable: ${allSubFigs ? "false" : "true"})
306778
306819
  `);
306779
306820
  state.write("#subpar.grid(");
306780
- let columns = 2;
306821
+ let columns = nonCaptions.length <= 3 ? nonCaptions.length : 2;
306781
306822
  nonCaptions.forEach((item) => {
306782
306823
  if (item.type === "container") {
306783
306824
  state.write("figure(\n");
306784
306825
  state.renderChildren(item);
306785
- state.write("\n),");
306826
+ state.write("\n, caption: []),");
306786
306827
  if (item.identifier) {
306787
306828
  state.write(` <${item.identifier}>,`);
306788
306829
  }
@@ -306793,7 +306834,7 @@ var containerHandler2 = (node3, state) => {
306793
306834
  columns = 1;
306794
306835
  }
306795
306836
  });
306796
- state.write(`columns: (${Array(columns).fill("1fr")}),
306837
+ state.write(`columns: ${columns},
306797
306838
  `);
306798
306839
  if (label) {
306799
306840
  state.write(`label: <${label}>,`);
@@ -306812,9 +306853,7 @@ var containerHandler2 = (node3, state) => {
306812
306853
  }
306813
306854
  if (captions === null || captions === void 0 ? void 0 : captions.length) {
306814
306855
  state.write("\n caption: [\n");
306815
- state.renderChildren({
306816
- children: captions.map((cap2) => cap2.children).filter(Boolean).flat()
306817
- });
306856
+ state.renderChildren(flatCaptions);
306818
306857
  state.write("\n],");
306819
306858
  }
306820
306859
  if (kind) {
@@ -307082,7 +307121,8 @@ var typstStrings = {
307082
307121
  ",": (state) => state.data.inFunction ? "comma" : ",",
307083
307122
  "&": (state) => state.data.inArray ? "," : "&",
307084
307123
  "/": "\\/",
307085
- ";": "\\;"
307124
+ ";": "\\;",
307125
+ "~": "med"
307086
307126
  };
307087
307127
  function splitStrings(node3) {
307088
307128
  var _a6, _b, _c;
@@ -307173,6 +307213,9 @@ var typstMacros = {
307173
307213
  return "\\\n";
307174
307214
  },
307175
307215
  sim: "tilde",
307216
+ cong: "tilde.equiv",
307217
+ simeq: "tilde.eq",
307218
+ ne: "!=",
307176
307219
  phi: "phi.alt",
307177
307220
  varepsilon: "epsilon",
307178
307221
  propto: "prop",
@@ -307182,7 +307225,6 @@ var typstMacros = {
307182
307225
  le: "lt.eq",
307183
307226
  leq: "lt.eq",
307184
307227
  neq: "eq.not",
307185
- simeq: "tilde.eq",
307186
307228
  otimes: "times.circle",
307187
307229
  dot: "dot",
307188
307230
  ddot: "dot.double",
@@ -307203,6 +307245,8 @@ var typstMacros = {
307203
307245
  quad: "quad",
307204
307246
  qquad: "wide",
307205
307247
  prod: "product",
307248
+ biggl: "",
307249
+ biggr: "",
307206
307250
  mathbb: (state, node3) => {
307207
307251
  var _a6, _b, _c, _d2, _e;
307208
307252
  const text7 = (_e = (_d2 = (_c = (_b = (_a6 = node3.args) === null || _a6 === void 0 ? void 0 : _a6.slice(-1)[0]) === null || _b === void 0 ? void 0 : _b.content) === null || _c === void 0 ? void 0 : _c[0]) === null || _d2 === void 0 ? void 0 : _d2.content) !== null && _e !== void 0 ? _e : "";
@@ -307210,6 +307254,10 @@ var typstMacros = {
307210
307254
  node3.args = [];
307211
307255
  return letters2;
307212
307256
  },
307257
+ mathscr: (state) => {
307258
+ state.useMacro(`#let scr(it) = text(features: ("ss01",), box($cal(it)$))`);
307259
+ return "scr";
307260
+ },
307213
307261
  overset: (state, node3) => {
307214
307262
  var _a6;
307215
307263
  state.useMacro('#import "@preview/ouset:0.2.0": *');
@@ -307245,6 +307293,7 @@ function parseLatex2(value) {
307245
307293
  dot: { signature: "m" },
307246
307294
  ddot: { signature: "m" },
307247
307295
  hat: { signature: "m" },
307296
+ tilde: { signature: "m" },
307248
307297
  widehat: { signature: "m" },
307249
307298
  overset: { signature: "m m" },
307250
307299
  underset: { signature: "m m" }
@@ -307425,7 +307474,7 @@ function writeTypst(node3, state = new State4()) {
307425
307474
  return state;
307426
307475
  }
307427
307476
  function postProcess(typst) {
307428
- return typst.replace(/^(_|\^)/, '""$1').replace(/"([^"]*)"=/g, '"$1" =');
307477
+ return typst.replace(/^(_|\^)/, '""$1').replace(/"([^"]*)"=/g, '"$1" =').replace(/(\d+)(?:\s+)(?=\d)/g, "$1");
307429
307478
  }
307430
307479
  function texToTypst(value) {
307431
307480
  const tree = parseLatex2(value);
@@ -307589,10 +307638,39 @@ var admonitionMacros = {
307589
307638
  tip: "#let tipBlock(body, heading: [Tip]) = admonition(body, heading: heading, color: green)",
307590
307639
  warning: "#let warningBlock(body, heading: [Warning]) = admonition(body, heading: heading, color: yellow)"
307591
307640
  };
307592
- var blockquote3 = `#let blockquote(node, color: gray) = {
307593
- let stroke = (left: 2pt + color.darken(20%))
307594
- set text(fill: black.lighten(40%), style: "oblique")
307595
- block(width: 100%, inset: 8pt, stroke: stroke)[#node]
307641
+ var tabSet = `
307642
+ #let tabSet(body) = {
307643
+ block(width: 100%, stroke: luma(240), [#body])
307644
+ }`;
307645
+ var tabItem = `
307646
+ #let tabItem(body, heading: none) = {
307647
+ let title
307648
+ if heading != none {
307649
+ title = block(width: 100%, inset: (x: 8pt, y: 4pt), fill: luma(250))[#text(9pt, weight: "bold")[#heading]]
307650
+ }
307651
+ block(width: 100%, [
307652
+ #title
307653
+ #block(width: 100%, inset: (x: 8pt, bottom: 8pt))[#body]
307654
+ ])
307655
+ }`;
307656
+ var proof = `
307657
+ #let proof(body, heading: [], kind: "proof", supplement: "Proof", labelName: none, color: blue, float: true) = {
307658
+ let stroke = 1pt + color.lighten(90%)
307659
+ let fill = color.lighten(90%)
307660
+ let title
307661
+ set figure.caption(position: top)
307662
+ set figure(placement: none)
307663
+ show figure.caption.where(body: heading): (it) => {
307664
+ block(width: 100%, stroke: stroke, fill: fill, inset: 8pt, it)
307665
+ }
307666
+ place(auto, float: float, block(width: 100%, [
307667
+ #figure(kind: kind, supplement: supplement, gap: 0pt, [
307668
+ #set align(left);
307669
+ #set figure.caption(position: bottom)
307670
+ #block(width: 100%, fill: luma(253), stroke: stroke, inset: 8pt)[#body]
307671
+ ], caption: heading)
307672
+ #if(labelName != none){label(labelName)}
307673
+ ]))
307596
307674
  }`;
307597
307675
  var INDENT = " ";
307598
307676
  var linkHandler = (node3, state) => {
@@ -307646,8 +307724,13 @@ var handlers4 = {
307646
307724
  state.renderChildren(node3, 2);
307647
307725
  },
307648
307726
  blockquote(node3, state) {
307649
- state.useMacro(blockquote3);
307650
- state.renderEnvironment(node3, "blockquote");
307727
+ if (state.data.isInBlockquote) {
307728
+ state.renderChildren(node3);
307729
+ return;
307730
+ }
307731
+ state.write("#quote(block: true)[");
307732
+ state.renderChildren(node3);
307733
+ state.write("]");
307651
307734
  },
307652
307735
  definitionList(node3, state) {
307653
307736
  let dedent = false;
@@ -307811,7 +307894,7 @@ ${node3.value}
307811
307894
  }
307812
307895
  state.useMacro(admonitionMacros[node3.kind]);
307813
307896
  state.write(`#${node3.kind}Block`);
307814
- if (title && toText(title).toLowerCase().replace(" ", "") !== node3.kind) {
307897
+ if (title && toText(title).toLowerCase().replaceAll(" ", "") !== node3.kind) {
307815
307898
  state.write("(heading: [");
307816
307899
  state.renderChildren(title);
307817
307900
  state.write("])");
@@ -307837,6 +307920,20 @@ ${node3.value}
307837
307920
  }
307838
307921
  state.write(")\n\n");
307839
307922
  },
307923
+ iframe(node3, state) {
307924
+ var _a6;
307925
+ const image6 = (_a6 = node3.children) === null || _a6 === void 0 ? void 0 : _a6[0];
307926
+ if (!image6 || image6.placeholder !== true)
307927
+ return;
307928
+ const { width: nodeWidth, url: nodeSrc, align } = image6;
307929
+ const src = nodeSrc;
307930
+ const width = getLatexImageWidth2(nodeWidth);
307931
+ state.write(`#image("${src}"`);
307932
+ if (!state.data.isInTable) {
307933
+ state.write(`, width: ${width}`);
307934
+ }
307935
+ state.write(")\n\n");
307936
+ },
307840
307937
  container: containerHandler2,
307841
307938
  caption: captionHandler2,
307842
307939
  legend: captionHandler2,
@@ -307911,6 +308008,38 @@ ${node3.value}
307911
308008
  } else if ((_a6 = node3.children) === null || _a6 === void 0 ? void 0 : _a6.length) {
307912
308009
  state.renderChildren(node3, void 0, { trimEnd: false });
307913
308010
  }
308011
+ },
308012
+ tabSet(node3, state) {
308013
+ state.useMacro(tabSet);
308014
+ state.write("#tabSet[\n");
308015
+ state.renderChildren(node3);
308016
+ state.write("\n]\n\n");
308017
+ },
308018
+ tabItem(node3, state) {
308019
+ state.useMacro(tabItem);
308020
+ state.ensureNewLine();
308021
+ const title = node3.title;
308022
+ state.write(`#tabItem(heading: [${title}])[
308023
+ `);
308024
+ state.renderChildren(node3);
308025
+ state.write("\n]\n\n");
308026
+ },
308027
+ proof(node3, state) {
308028
+ state.useMacro(proof);
308029
+ const title = select("admonitionTitle", node3);
308030
+ const kind = node3.kind || "proof";
308031
+ const supplement = getDefaultCaptionSupplement(kind);
308032
+ state.write(`#proof(kind: "${kind}", supplement: "${supplement}", labelName: ${node3.identifier ? `"${node3.identifier}"` : "none"}`);
308033
+ if (title) {
308034
+ state.write(", heading: [");
308035
+ state.renderChildren(title);
308036
+ state.write("])[");
308037
+ } else {
308038
+ state.write(")[");
308039
+ }
308040
+ state.renderChildren(node3);
308041
+ state.write("]");
308042
+ state.ensureNewLine();
307914
308043
  }
307915
308044
  };
307916
308045
  var TypstSerializer = class {
@@ -307956,8 +308085,13 @@ var TypstSerializer = class {
307956
308085
  return;
307957
308086
  this.addNewLine();
307958
308087
  }
307959
- renderChildren(node3, trailingNewLines = 0, { delim = "", trimEnd: trimEnd2 = true } = {}) {
308088
+ renderChildren(node3, trailingNewLines = 0, opts = {}) {
307960
308089
  var _a6, _b, _c;
308090
+ if (Array.isArray(node3)) {
308091
+ this.renderChildren({ children: node3 }, trailingNewLines, opts);
308092
+ return;
308093
+ }
308094
+ const { delim = "", trimEnd: trimEnd2 = true } = opts;
307961
308095
  const numChildren = (_b = (_a6 = node3.children) === null || _a6 === void 0 ? void 0 : _a6.length) !== null && _b !== void 0 ? _b : 0;
307962
308096
  (_c = node3.children) === null || _c === void 0 ? void 0 : _c.forEach((child, index4) => {
307963
308097
  if (!child)
@@ -308553,7 +308687,7 @@ var smallcaps = (state, node3) => {
308553
308687
  state.addRunOptions({ smallCaps: true });
308554
308688
  state.renderChildren(node3);
308555
308689
  };
308556
- var blockquote4 = (state, node3) => {
308690
+ var blockquote3 = (state, node3) => {
308557
308691
  state.renderChildren(node3, { style: "IntenseQuote" });
308558
308692
  };
308559
308693
  var code4 = (state, node3) => {
@@ -308850,7 +308984,7 @@ var defaultHandlers = {
308850
308984
  delete: _delete,
308851
308985
  underline,
308852
308986
  smallcaps,
308853
- blockquote: blockquote4,
308987
+ blockquote: blockquote3,
308854
308988
  code: code4,
308855
308989
  image: image3,
308856
308990
  block: block3,
@@ -310322,11 +310456,11 @@ function containerTransform(mdast2) {
310322
310456
  liftCaptionNumber(container4);
310323
310457
  if (container4.kind === "quote") {
310324
310458
  const caption4 = select("caption > paragraph", container4);
310325
- const blockquote6 = select("blockquote", container4);
310326
- if (blockquote6 && caption4) {
310459
+ const blockquote5 = select("blockquote", container4);
310460
+ if (blockquote5 && caption4) {
310327
310461
  const newContainer = container4;
310328
310462
  newContainer.type = "blockquote";
310329
- newContainer.children = blockquote6.children;
310463
+ newContainer.children = blockquote5.children;
310330
310464
  caption4.type = "attrib";
310331
310465
  newContainer.children.push(caption4);
310332
310466
  }
@@ -314941,7 +315075,7 @@ function configure(base5, extension) {
314941
315075
  }
314942
315076
 
314943
315077
  // ../../node_modules/mdast-util-to-markdown/lib/handle/blockquote.js
314944
- function blockquote5(node3, _3, state, info) {
315078
+ function blockquote4(node3, _3, state, info) {
314945
315079
  const exit = state.enter("blockquote");
314946
315080
  const tracker = state.createTracker(info);
314947
315081
  tracker.move("> ");
@@ -315695,7 +315829,7 @@ function thematicBreak3(_3, _1, state) {
315695
315829
 
315696
315830
  // ../../node_modules/mdast-util-to-markdown/lib/handle/index.js
315697
315831
  var handle5 = {
315698
- blockquote: blockquote5,
315832
+ blockquote: blockquote4,
315699
315833
  break: hardBreak2,
315700
315834
  code: code5,
315701
315835
  definition,
@@ -316291,7 +316425,7 @@ function tabSetValidator(node3, file) {
316291
316425
  }
316292
316426
  });
316293
316427
  }
316294
- function tabItem(node3, _3, state, info) {
316428
+ function tabItem2(node3, _3, state, info) {
316295
316429
  const handler = writeFlowDirective("tab-item", node3.title, { keys: ["sync", "selected"] });
316296
316430
  return handler(node3, _3, state, info);
316297
316431
  }
@@ -316307,7 +316441,7 @@ var directiveHandlers2 = {
316307
316441
  transforms: { columns: (val) => val.join(" ") }
316308
316442
  }),
316309
316443
  tabSet: writeFlowDirective("tab-set"),
316310
- tabItem,
316444
+ tabItem: tabItem2,
316311
316445
  math: writeStaticDirective("math", { keys: ["label"] }),
316312
316446
  embed: writeStaticDirective("embed", { argsKey: "label" }),
316313
316447
  include: writeStaticDirective("include", { argsKey: "file" }),
File without changes
File without changes
File without changes
File without changes
File without changes