scopegraphs-render-docs 0.3.3

Derived from Aquamarine, a mermaid.js integration for rustdoc, renders scopegraphs by executing doctests to generate mermaid
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
import { l as log } from "./commonDb-89160e91.js";
import { p as decodeEntities } from "./mermaidAPI-c841a67f.js";
var CR_NEWLINE_R = /\r\n?/g;
var TAB_R = /\t/g;
var FORMFEED_R = /\f/g;
var preprocess = function preprocess2(source) {
  return source.replace(CR_NEWLINE_R, "\n").replace(FORMFEED_R, "").replace(TAB_R, "    ");
};
var populateInitialState = function populateInitialState2(givenState, defaultState) {
  var state = givenState || {};
  if (defaultState != null) {
    for (var prop in defaultState) {
      if (Object.prototype.hasOwnProperty.call(defaultState, prop)) {
        state[prop] = defaultState[prop];
      }
    }
  }
  return state;
};
var parserFor = function parserFor2(rules, defaultState) {
  var ruleList = Object.keys(rules).filter(function(type) {
    var rule = rules[type];
    if (rule == null || rule.match == null) {
      return false;
    }
    var order = rule.order;
    if ((typeof order !== "number" || !isFinite(order)) && typeof console !== "undefined") {
      console.warn("simple-markdown: Invalid order for rule `" + type + "`: " + String(order));
    }
    return true;
  });
  ruleList.sort(function(typeA, typeB) {
    var ruleA = rules[typeA];
    var ruleB = rules[typeB];
    var orderA = ruleA.order;
    var orderB = ruleB.order;
    if (orderA !== orderB) {
      return orderA - orderB;
    }
    var secondaryOrderA = ruleA.quality ? 0 : 1;
    var secondaryOrderB = ruleB.quality ? 0 : 1;
    if (secondaryOrderA !== secondaryOrderB) {
      return secondaryOrderA - secondaryOrderB;
    } else if (typeA < typeB) {
      return -1;
    } else if (typeA > typeB) {
      return 1;
    } else {
      return 0;
    }
  });
  var latestState;
  var nestedParse = function nestedParse2(source, state) {
    var result = [];
    state = state || latestState;
    latestState = state;
    while (source) {
      var ruleType = null;
      var rule = null;
      var capture = null;
      var quality4 = NaN;
      var i = 0;
      var currRuleType = ruleList[0];
      var currRule = rules[currRuleType];
      do {
        var currOrder2 = currRule.order;
        var prevCaptureStr = state.prevCapture == null ? "" : state.prevCapture[0];
        var currCapture = currRule.match(source, state, prevCaptureStr);
        if (currCapture) {
          var currQuality = currRule.quality ? currRule.quality(currCapture, state, prevCaptureStr) : 0;
          if (!(currQuality <= quality4)) {
            ruleType = currRuleType;
            rule = currRule;
            capture = currCapture;
            quality4 = currQuality;
          }
        }
        i++;
        currRuleType = ruleList[i];
        currRule = rules[currRuleType];
      } while (
        // keep looping while we're still within the ruleList
        currRule && // if we don't have a match yet, continue
        (!capture || // or if we have a match, but the next rule is
        // at the same order, and has a quality measurement
        // functions, then this rule must have a quality
        // measurement function (since they are sorted before
        // those without), and we need to check if there is
        // a better quality match
        currRule.order === currOrder2 && currRule.quality)
      );
      if (rule == null || capture == null) {
        throw new Error("Could not find a matching rule for the below content. The rule with highest `order` should always match content provided to it. Check the definition of `match` for '" + ruleList[ruleList.length - 1] + "'. It seems to not match the following source:\n" + source);
      }
      if (capture.index) {
        throw new Error("`match` must return a capture starting at index 0 (the current parse index). Did you forget a ^ at the start of the RegExp?");
      }
      var parsed = rule.parse(capture, nestedParse2, state);
      if (Array.isArray(parsed)) {
        Array.prototype.push.apply(result, parsed);
      } else {
        if (parsed == null || typeof parsed !== "object") {
          throw new Error("parse() function returned invalid parse result: '".concat(parsed, "'"));
        }
        if (parsed.type == null) {
          parsed.type = ruleType;
        }
        result.push(parsed);
      }
      state.prevCapture = capture;
      source = source.substring(state.prevCapture[0].length);
    }
    return result;
  };
  var outerParse = function outerParse2(source, state) {
    latestState = populateInitialState(state, defaultState);
    if (!latestState.inline && !latestState.disableAutoBlockNewlines) {
      source = source + "\n\n";
    }
    latestState.prevCapture = null;
    return nestedParse(preprocess(source), latestState);
  };
  return outerParse;
};
var inlineRegex = function inlineRegex2(regex) {
  var match3 = function match4(source, state, prevCapture) {
    if (state.inline) {
      return regex.exec(source);
    } else {
      return null;
    }
  };
  match3.regex = regex;
  return match3;
};
var blockRegex = function blockRegex2(regex) {
  var match3 = function match4(source, state) {
    if (state.inline) {
      return null;
    } else {
      return regex.exec(source);
    }
  };
  match3.regex = regex;
  return match3;
};
var anyScopeRegex = function anyScopeRegex2(regex) {
  var match3 = function match4(source, state) {
    return regex.exec(source);
  };
  match3.regex = regex;
  return match3;
};
var TYPE_SYMBOL = typeof Symbol === "function" && Symbol.for && Symbol.for("react.element") || 60103;
var reactElement = function reactElement2(type, key, props) {
  var element = {
    $$typeof: TYPE_SYMBOL,
    type,
    key: key == null ? void 0 : key,
    ref: null,
    props,
    _owner: null
  };
  return element;
};
var htmlTag = function htmlTag2(tagName, content, attributes, isClosed) {
  attributes = attributes || {};
  isClosed = typeof isClosed !== "undefined" ? isClosed : true;
  var attributeString = "";
  for (var attr in attributes) {
    var attribute = attributes[attr];
    if (
      // $FlowFixMe
      Object.prototype.hasOwnProperty.call(attributes, attr) && attribute
    ) {
      attributeString += " " + sanitizeText(attr) + '="' + sanitizeText(attribute) + '"';
    }
  }
  var unclosedTag = "<" + tagName + attributeString + ">";
  if (isClosed) {
    return unclosedTag + content + "</" + tagName + ">";
  } else {
    return unclosedTag;
  }
};
var EMPTY_PROPS = {};
var sanitizeUrl = function sanitizeUrl2(url) {
  if (url == null) {
    return null;
  }
  try {
    var prot = new URL(url, "https://localhost").protocol;
    if (prot.indexOf("javascript:") === 0 || prot.indexOf("vbscript:") === 0 || prot.indexOf("data:") === 0) {
      return null;
    }
  } catch (e) {
    return null;
  }
  return url;
};
var SANITIZE_TEXT_R = /[<>&"']/g;
var SANITIZE_TEXT_CODES = {
  "<": "&lt;",
  ">": "&gt;",
  "&": "&amp;",
  '"': "&quot;",
  "'": "&#x27;",
  "/": "&#x2F;",
  "`": "&#96;"
};
var sanitizeText = function sanitizeText2(text) {
  return String(text).replace(SANITIZE_TEXT_R, function(chr) {
    return SANITIZE_TEXT_CODES[chr];
  });
};
var UNESCAPE_URL_R = /\\([^0-9A-Za-z\s])/g;
var unescapeUrl = function unescapeUrl2(rawUrlString) {
  return rawUrlString.replace(UNESCAPE_URL_R, "$1");
};
var parseInline = function parseInline2(parse2, content, state) {
  var isCurrentlyInline = state.inline || false;
  state.inline = true;
  var result = parse2(content, state);
  state.inline = isCurrentlyInline;
  return result;
};
var parseBlock = function parseBlock2(parse2, content, state) {
  var isCurrentlyInline = state.inline || false;
  state.inline = false;
  var result = parse2(content + "\n\n", state);
  state.inline = isCurrentlyInline;
  return result;
};
var parseCaptureInline = function parseCaptureInline2(capture, parse2, state) {
  return {
    content: parseInline(parse2, capture[1], state)
  };
};
var ignoreCapture = function ignoreCapture2() {
  return {};
};
var LIST_BULLET = "(?:[*+-]|\\d+\\.)";
var LIST_ITEM_PREFIX = "( *)(" + LIST_BULLET + ") +";
var LIST_ITEM_PREFIX_R = new RegExp("^" + LIST_ITEM_PREFIX);
var LIST_ITEM_R = new RegExp(LIST_ITEM_PREFIX + "[^\\n]*(?:\\n(?!\\1" + LIST_BULLET + " )[^\\n]*)*(\n|$)", "gm");
var BLOCK_END_R = /\n{2,}$/;
var INLINE_CODE_ESCAPE_BACKTICKS_R = /^ (?= *`)|(` *) $/g;
var LIST_BLOCK_END_R = BLOCK_END_R;
var LIST_ITEM_END_R = / *\n+$/;
var LIST_R = new RegExp("^( *)(" + LIST_BULLET + ") [\\s\\S]+?(?:\n{2,}(?! )(?!\\1" + LIST_BULLET + " )\\n*|\\s*\n*$)");
var LIST_LOOKBEHIND_R = /(?:^|\n)( *)$/;
var TABLES = function() {
  var TABLE_ROW_SEPARATOR_TRIM = /^ *\| *| *\| *$/g;
  var TABLE_CELL_END_TRIM = / *$/;
  var TABLE_RIGHT_ALIGN = /^ *-+: *$/;
  var TABLE_CENTER_ALIGN = /^ *:-+: *$/;
  var TABLE_LEFT_ALIGN = /^ *:-+ *$/;
  var parseTableAlignCapture = function parseTableAlignCapture2(alignCapture) {
    if (TABLE_RIGHT_ALIGN.test(alignCapture)) {
      return "right";
    } else if (TABLE_CENTER_ALIGN.test(alignCapture)) {
      return "center";
    } else if (TABLE_LEFT_ALIGN.test(alignCapture)) {
      return "left";
    } else {
      return null;
    }
  };
  var parseTableAlign = function parseTableAlign2(source, parse2, state, trimEndSeparators) {
    if (trimEndSeparators) {
      source = source.replace(TABLE_ROW_SEPARATOR_TRIM, "");
    }
    var alignText = source.trim().split("|");
    return alignText.map(parseTableAlignCapture);
  };
  var parseTableRow = function parseTableRow2(source, parse2, state, trimEndSeparators) {
    var prevInTable = state.inTable;
    state.inTable = true;
    var tableRow = parse2(source.trim(), state);
    state.inTable = prevInTable;
    var cells = [[]];
    tableRow.forEach(function(node, i) {
      if (node.type === "tableSeparator") {
        if (!trimEndSeparators || i !== 0 && i !== tableRow.length - 1) {
          cells.push([]);
        }
      } else {
        if (node.type === "text" && (tableRow[i + 1] == null || tableRow[i + 1].type === "tableSeparator")) {
          node.content = node.content.replace(TABLE_CELL_END_TRIM, "");
        }
        cells[cells.length - 1].push(node);
      }
    });
    return cells;
  };
  var parseTableCells = function parseTableCells2(source, parse2, state, trimEndSeparators) {
    var rowsText = source.trim().split("\n");
    return rowsText.map(function(rowText) {
      return parseTableRow(rowText, parse2, state, trimEndSeparators);
    });
  };
  var parseTable = function parseTable2(trimEndSeparators) {
    return function(capture, parse2, state) {
      state.inline = true;
      var header = parseTableRow(capture[1], parse2, state, trimEndSeparators);
      var align = parseTableAlign(capture[2], parse2, state, trimEndSeparators);
      var cells = parseTableCells(capture[3], parse2, state, trimEndSeparators);
      state.inline = false;
      return {
        type: "table",
        header,
        align,
        cells
      };
    };
  };
  return {
    parseTable: parseTable(true),
    parseNpTable: parseTable(false),
    TABLE_REGEX: /^ *(\|.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/,
    NPTABLE_REGEX: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/
  };
}();
var LINK_INSIDE = "(?:\\[[^\\]]*\\]|[^\\[\\]]|\\](?=[^\\[]*\\]))*";
var LINK_HREF_AND_TITLE = `\\s*<?((?:\\([^)]*\\)|[^\\s\\\\]|\\\\.)*?)>?(?:\\s+['"]([\\s\\S]*?)['"])?\\s*`;
var AUTOLINK_MAILTO_CHECK_R = /mailto:/i;
var parseRef = function parseRef2(capture, state, refNode) {
  var ref = (capture[2] || capture[1]).replace(/\s+/g, " ").toLowerCase();
  if (state._defs && state._defs[ref]) {
    var def = state._defs[ref];
    refNode.target = def.target;
    refNode.title = def.title;
  }
  state._refs = state._refs || {};
  state._refs[ref] = state._refs[ref] || [];
  state._refs[ref].push(refNode);
  return refNode;
};
var currOrder = 0;
var defaultRules = {
  Array: {
    react: function react(arr, output, state) {
      var oldKey = state.key;
      var result = [];
      for (var i = 0, key = 0; i < arr.length; i++, key++) {
        state.key = "" + i;
        var node = arr[i];
        if (node.type === "text") {
          node = {
            type: "text",
            content: node.content
          };
          for (; i + 1 < arr.length && arr[i + 1].type === "text"; i++) {
            node.content += arr[i + 1].content;
          }
        }
        result.push(output(node, state));
      }
      state.key = oldKey;
      return result;
    },
    html: function html(arr, output, state) {
      var result = "";
      for (var i = 0; i < arr.length; i++) {
        var node = arr[i];
        if (node.type === "text") {
          node = {
            type: "text",
            content: node.content
          };
          for (; i + 1 < arr.length && arr[i + 1].type === "text"; i++) {
            node.content += arr[i + 1].content;
          }
        }
        result += output(node, state);
      }
      return result;
    }
  },
  heading: {
    order: currOrder++,
    match: blockRegex(/^ *(#{1,6})([^\n]+?)#* *(?:\n *)+\n/),
    parse: function(_parse) {
      function parse2(_x, _x2, _x3) {
        return _parse.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      return {
        level: capture[1].length,
        content: parseInline(parse2, capture[2].trim(), state)
      };
    }),
    react: function react2(node, output, state) {
      return reactElement("h" + node.level, state.key, {
        children: output(node.content, state)
      });
    },
    html: function html2(node, output, state) {
      return htmlTag("h" + node.level, output(node.content, state));
    }
  },
  nptable: {
    order: currOrder++,
    match: blockRegex(TABLES.NPTABLE_REGEX),
    parse: TABLES.parseNpTable,
    react: null,
    html: null
  },
  lheading: {
    order: currOrder++,
    match: blockRegex(/^([^\n]+)\n *(=|-){3,} *(?:\n *)+\n/),
    parse: function(_parse2) {
      function parse2(_x4, _x5, _x6) {
        return _parse2.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse2.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      return {
        type: "heading",
        level: capture[2] === "=" ? 1 : 2,
        content: parseInline(parse2, capture[1], state)
      };
    }),
    react: null,
    html: null
  },
  hr: {
    order: currOrder++,
    match: blockRegex(/^( *[-*_]){3,} *(?:\n *)+\n/),
    parse: ignoreCapture,
    react: function react3(node, output, state) {
      return reactElement("hr", state.key, EMPTY_PROPS);
    },
    html: function html3(node, output, state) {
      return "<hr>";
    }
  },
  codeBlock: {
    order: currOrder++,
    match: blockRegex(/^(?:    [^\n]+\n*)+(?:\n *)+\n/),
    parse: function(_parse3) {
      function parse2(_x7, _x8, _x9) {
        return _parse3.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse3.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      var content = capture[0].replace(/^    /gm, "").replace(/\n+$/, "");
      return {
        lang: void 0,
        content
      };
    }),
    react: function react4(node, output, state) {
      var className = node.lang ? "markdown-code-" + node.lang : void 0;
      return reactElement("pre", state.key, {
        children: reactElement("code", null, {
          className,
          children: node.content
        })
      });
    },
    html: function html4(node, output, state) {
      var className = node.lang ? "markdown-code-" + node.lang : void 0;
      var codeBlock = htmlTag("code", sanitizeText(node.content), {
        class: className
      });
      return htmlTag("pre", codeBlock);
    }
  },
  fence: {
    order: currOrder++,
    match: blockRegex(/^ *(`{3,}|~{3,}) *(?:(\S+) *)?\n([\s\S]+?)\n?\1 *(?:\n *)+\n/),
    parse: function(_parse4) {
      function parse2(_x10, _x11, _x12) {
        return _parse4.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse4.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      return {
        type: "codeBlock",
        lang: capture[2] || void 0,
        content: capture[3]
      };
    }),
    react: null,
    html: null
  },
  blockQuote: {
    order: currOrder++,
    match: blockRegex(/^( *>[^\n]+(\n[^\n]+)*\n*)+\n{2,}/),
    parse: function(_parse5) {
      function parse2(_x13, _x14, _x15) {
        return _parse5.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse5.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      var content = capture[0].replace(/^ *> ?/gm, "");
      return {
        content: parse2(content, state)
      };
    }),
    react: function react5(node, output, state) {
      return reactElement("blockquote", state.key, {
        children: output(node.content, state)
      });
    },
    html: function html5(node, output, state) {
      return htmlTag("blockquote", output(node.content, state));
    }
  },
  list: {
    order: currOrder++,
    // $FlowFixMe
    match: function match(source, state) {
      var prevCaptureStr = state.prevCapture == null ? "" : state.prevCapture[0];
      var isStartOfLineCapture = LIST_LOOKBEHIND_R.exec(prevCaptureStr);
      var isListBlock = state._list || !state.inline;
      if (isStartOfLineCapture && isListBlock) {
        source = isStartOfLineCapture[1] + source;
        return LIST_R.exec(source);
      } else {
        return null;
      }
    },
    parse: function(_parse6) {
      function parse2(_x16, _x17, _x18) {
        return _parse6.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse6.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      var bullet = capture[2];
      var ordered = bullet.length > 1;
      var start = ordered ? +bullet : void 0;
      var items = capture[0].replace(LIST_BLOCK_END_R, "\n").match(LIST_ITEM_R);
      var lastItemWasAParagraph = false;
      var itemContent = items.map(function(item, i) {
        var prefixCapture = LIST_ITEM_PREFIX_R.exec(item);
        var space = prefixCapture ? prefixCapture[0].length : 0;
        var spaceRegex = new RegExp("^ {1," + space + "}", "gm");
        var content = item.replace(spaceRegex, "").replace(LIST_ITEM_PREFIX_R, "");
        var isLastItem = i === items.length - 1;
        var containsBlocks = content.indexOf("\n\n") !== -1;
        var thisItemIsAParagraph = containsBlocks || isLastItem && lastItemWasAParagraph;
        lastItemWasAParagraph = thisItemIsAParagraph;
        var oldStateInline = state.inline;
        var oldStateList = state._list;
        state._list = true;
        var adjustedContent;
        if (thisItemIsAParagraph) {
          state.inline = false;
          adjustedContent = content.replace(LIST_ITEM_END_R, "\n\n");
        } else {
          state.inline = true;
          adjustedContent = content.replace(LIST_ITEM_END_R, "");
        }
        var result = parse2(adjustedContent, state);
        state.inline = oldStateInline;
        state._list = oldStateList;
        return result;
      });
      return {
        ordered,
        start,
        items: itemContent
      };
    }),
    react: function react6(node, output, state) {
      var ListWrapper = node.ordered ? "ol" : "ul";
      return reactElement(ListWrapper, state.key, {
        start: node.start,
        children: node.items.map(function(item, i) {
          return reactElement("li", "" + i, {
            children: output(item, state)
          });
        })
      });
    },
    html: function html6(node, output, state) {
      var listItems = node.items.map(function(item) {
        return htmlTag("li", output(item, state));
      }).join("");
      var listTag = node.ordered ? "ol" : "ul";
      var attributes = {
        start: node.start
      };
      return htmlTag(listTag, listItems, attributes);
    }
  },
  def: {
    order: currOrder++,
    // TODO(aria): This will match without a blank line before the next
    // block element, which is inconsistent with most of the rest of
    // simple-markdown.
    match: blockRegex(/^ *\[([^\]]+)\]: *<?([^\s>]*)>?(?: +["(]([^\n]+)[")])? *\n(?: *\n)*/),
    parse: function(_parse7) {
      function parse2(_x19, _x20, _x21) {
        return _parse7.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse7.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      var def = capture[1].replace(/\s+/g, " ").toLowerCase();
      var target = capture[2];
      var title = capture[3];
      if (state._refs && state._refs[def]) {
        state._refs[def].forEach(function(refNode) {
          refNode.target = target;
          refNode.title = title;
        });
      }
      state._defs = state._defs || {};
      state._defs[def] = {
        target,
        title
      };
      return {
        def,
        target,
        title
      };
    }),
    react: function react7() {
      return null;
    },
    html: function html7() {
      return "";
    }
  },
  table: {
    order: currOrder++,
    match: blockRegex(TABLES.TABLE_REGEX),
    parse: TABLES.parseTable,
    react: function react8(node, output, state) {
      var getStyle = function getStyle2(colIndex) {
        return node.align[colIndex] == null ? {} : {
          textAlign: node.align[colIndex]
        };
      };
      var headers = node.header.map(function(content, i) {
        return reactElement("th", "" + i, {
          style: getStyle(i),
          scope: "col",
          children: output(content, state)
        });
      });
      var rows = node.cells.map(function(row, r) {
        return reactElement("tr", "" + r, {
          children: row.map(function(content, c) {
            return reactElement("td", "" + c, {
              style: getStyle(c),
              children: output(content, state)
            });
          })
        });
      });
      return reactElement("table", state.key, {
        children: [reactElement("thead", "thead", {
          children: reactElement("tr", null, {
            children: headers
          })
        }), reactElement("tbody", "tbody", {
          children: rows
        })]
      });
    },
    html: function html8(node, output, state) {
      var getStyle = function getStyle2(colIndex) {
        return node.align[colIndex] == null ? "" : "text-align:" + node.align[colIndex] + ";";
      };
      var headers = node.header.map(function(content, i) {
        return htmlTag("th", output(content, state), {
          style: getStyle(i),
          scope: "col"
        });
      }).join("");
      var rows = node.cells.map(function(row) {
        var cols = row.map(function(content, c) {
          return htmlTag("td", output(content, state), {
            style: getStyle(c)
          });
        }).join("");
        return htmlTag("tr", cols);
      }).join("");
      var thead = htmlTag("thead", htmlTag("tr", headers));
      var tbody = htmlTag("tbody", rows);
      return htmlTag("table", thead + tbody);
    }
  },
  newline: {
    order: currOrder++,
    match: blockRegex(/^(?:\n *)*\n/),
    parse: ignoreCapture,
    react: function react9(node, output, state) {
      return "\n";
    },
    html: function html9(node, output, state) {
      return "\n";
    }
  },
  paragraph: {
    order: currOrder++,
    match: blockRegex(/^((?:[^\n]|\n(?! *\n))+)(?:\n *)+\n/),
    parse: parseCaptureInline,
    react: function react10(node, output, state) {
      return reactElement("div", state.key, {
        className: "paragraph",
        children: output(node.content, state)
      });
    },
    html: function html10(node, output, state) {
      var attributes = {
        class: "paragraph"
      };
      return htmlTag("div", output(node.content, state), attributes);
    }
  },
  escape: {
    order: currOrder++,
    // We don't allow escaping numbers, letters, or spaces here so that
    // backslashes used in plain text still get rendered. But allowing
    // escaping anything else provides a very flexible escape mechanism,
    // regardless of how this grammar is extended.
    match: inlineRegex(/^\\([^0-9A-Za-z\s])/),
    parse: function(_parse8) {
      function parse2(_x22, _x23, _x24) {
        return _parse8.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse8.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      return {
        type: "text",
        content: capture[1]
      };
    }),
    react: null,
    html: null
  },
  tableSeparator: {
    order: currOrder++,
    // $FlowFixMe
    match: function match2(source, state) {
      if (!state.inTable) {
        return null;
      }
      return /^ *\| */.exec(source);
    },
    parse: function parse() {
      return {
        type: "tableSeparator"
      };
    },
    // These shouldn't be reached, but in case they are, be reasonable:
    react: function react11() {
      return " | ";
    },
    html: function html11() {
      return " &vert; ";
    }
  },
  autolink: {
    order: currOrder++,
    match: inlineRegex(/^<([^: >]+:\/[^ >]+)>/),
    parse: function(_parse9) {
      function parse2(_x25, _x26, _x27) {
        return _parse9.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse9.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      return {
        type: "link",
        content: [{
          type: "text",
          content: capture[1]
        }],
        target: capture[1]
      };
    }),
    react: null,
    html: null
  },
  mailto: {
    order: currOrder++,
    match: inlineRegex(/^<([^ >]+@[^ >]+)>/),
    parse: function(_parse10) {
      function parse2(_x28, _x29, _x30) {
        return _parse10.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse10.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      var address = capture[1];
      var target = capture[1];
      if (!AUTOLINK_MAILTO_CHECK_R.test(target)) {
        target = "mailto:" + target;
      }
      return {
        type: "link",
        content: [{
          type: "text",
          content: address
        }],
        target
      };
    }),
    react: null,
    html: null
  },
  url: {
    order: currOrder++,
    match: inlineRegex(/^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/),
    parse: function(_parse11) {
      function parse2(_x31, _x32, _x33) {
        return _parse11.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse11.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      return {
        type: "link",
        content: [{
          type: "text",
          content: capture[1]
        }],
        target: capture[1],
        title: void 0
      };
    }),
    react: null,
    html: null
  },
  link: {
    order: currOrder++,
    match: inlineRegex(new RegExp("^\\[(" + LINK_INSIDE + ")\\]\\(" + LINK_HREF_AND_TITLE + "\\)")),
    parse: function(_parse12) {
      function parse2(_x34, _x35, _x36) {
        return _parse12.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse12.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      var link = {
        content: parse2(capture[1], state),
        target: unescapeUrl(capture[2]),
        title: capture[3]
      };
      return link;
    }),
    react: function react12(node, output, state) {
      return reactElement("a", state.key, {
        href: sanitizeUrl(node.target),
        title: node.title,
        children: output(node.content, state)
      });
    },
    html: function html12(node, output, state) {
      var attributes = {
        href: sanitizeUrl(node.target),
        title: node.title
      };
      return htmlTag("a", output(node.content, state), attributes);
    }
  },
  image: {
    order: currOrder++,
    match: inlineRegex(new RegExp("^!\\[(" + LINK_INSIDE + ")\\]\\(" + LINK_HREF_AND_TITLE + "\\)")),
    parse: function(_parse13) {
      function parse2(_x37, _x38, _x39) {
        return _parse13.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse13.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      var image = {
        alt: capture[1],
        target: unescapeUrl(capture[2]),
        title: capture[3]
      };
      return image;
    }),
    react: function react13(node, output, state) {
      return reactElement("img", state.key, {
        src: sanitizeUrl(node.target),
        alt: node.alt,
        title: node.title
      });
    },
    html: function html13(node, output, state) {
      var attributes = {
        src: sanitizeUrl(node.target),
        alt: node.alt,
        title: node.title
      };
      return htmlTag("img", "", attributes, false);
    }
  },
  reflink: {
    order: currOrder++,
    match: inlineRegex(new RegExp(
      // The first [part] of the link
      "^\\[(" + LINK_INSIDE + ")\\]\\s*\\[([^\\]]*)\\]"
    )),
    parse: function(_parse14) {
      function parse2(_x40, _x41, _x42) {
        return _parse14.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse14.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      return parseRef(capture, state, {
        type: "link",
        content: parse2(capture[1], state)
      });
    }),
    react: null,
    html: null
  },
  refimage: {
    order: currOrder++,
    match: inlineRegex(new RegExp(
      // The first [part] of the link
      "^!\\[(" + LINK_INSIDE + ")\\]\\s*\\[([^\\]]*)\\]"
    )),
    parse: function(_parse15) {
      function parse2(_x43, _x44, _x45) {
        return _parse15.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse15.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      return parseRef(capture, state, {
        type: "image",
        alt: capture[1]
      });
    }),
    react: null,
    html: null
  },
  em: {
    order: currOrder,
    match: inlineRegex(new RegExp(
      // only match _s surrounding words.
      "^\\b_((?:__|\\\\[\\s\\S]|[^\\\\_])+?)_\\b|^\\*(?=\\S)((?:\\*\\*|\\\\[\\s\\S]|\\s+(?:\\\\[\\s\\S]|[^\\s\\*\\\\]|\\*\\*)|[^\\s\\*\\\\])+?)\\*(?!\\*)"
    )),
    quality: function quality(capture) {
      return capture[0].length + 0.2;
    },
    parse: function(_parse16) {
      function parse2(_x46, _x47, _x48) {
        return _parse16.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse16.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      return {
        content: parse2(capture[2] || capture[1], state)
      };
    }),
    react: function react14(node, output, state) {
      return reactElement("em", state.key, {
        children: output(node.content, state)
      });
    },
    html: function html14(node, output, state) {
      return htmlTag("em", output(node.content, state));
    }
  },
  strong: {
    order: currOrder,
    match: inlineRegex(/^\*\*((?:\\[\s\S]|[^\\])+?)\*\*(?!\*)/),
    quality: function quality2(capture) {
      return capture[0].length + 0.1;
    },
    parse: parseCaptureInline,
    react: function react15(node, output, state) {
      return reactElement("strong", state.key, {
        children: output(node.content, state)
      });
    },
    html: function html15(node, output, state) {
      return htmlTag("strong", output(node.content, state));
    }
  },
  u: {
    order: currOrder++,
    match: inlineRegex(/^__((?:\\[\s\S]|[^\\])+?)__(?!_)/),
    quality: function quality3(capture) {
      return capture[0].length;
    },
    parse: parseCaptureInline,
    react: function react16(node, output, state) {
      return reactElement("u", state.key, {
        children: output(node.content, state)
      });
    },
    html: function html16(node, output, state) {
      return htmlTag("u", output(node.content, state));
    }
  },
  del: {
    order: currOrder++,
    match: inlineRegex(/^~~(?=\S)((?:\\[\s\S]|~(?!~)|[^\s~\\]|\s(?!~~))+?)~~/),
    parse: parseCaptureInline,
    react: function react17(node, output, state) {
      return reactElement("del", state.key, {
        children: output(node.content, state)
      });
    },
    html: function html17(node, output, state) {
      return htmlTag("del", output(node.content, state));
    }
  },
  inlineCode: {
    order: currOrder++,
    match: inlineRegex(/^(`+)([\s\S]*?[^`])\1(?!`)/),
    parse: function(_parse17) {
      function parse2(_x49, _x50, _x51) {
        return _parse17.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse17.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      return {
        content: capture[2].replace(INLINE_CODE_ESCAPE_BACKTICKS_R, "$1")
      };
    }),
    react: function react18(node, output, state) {
      return reactElement("code", state.key, {
        children: node.content
      });
    },
    html: function html18(node, output, state) {
      return htmlTag("code", sanitizeText(node.content));
    }
  },
  br: {
    order: currOrder++,
    match: anyScopeRegex(/^ {2,}\n/),
    parse: ignoreCapture,
    react: function react19(node, output, state) {
      return reactElement("br", state.key, EMPTY_PROPS);
    },
    html: function html19(node, output, state) {
      return "<br>";
    }
  },
  text: {
    order: currOrder++,
    // Here we look for anything followed by non-symbols,
    // double newlines, or double-space-newlines
    // We break on any symbol characters so that this grammar
    // is easy to extend without needing to modify this regex
    match: anyScopeRegex(/^[\s\S]+?(?=[^0-9A-Za-z\s\u00c0-\uffff]|\n\n| {2,}\n|\w+:\S|$)/),
    parse: function(_parse18) {
      function parse2(_x52, _x53, _x54) {
        return _parse18.apply(this, arguments);
      }
      parse2.toString = function() {
        return _parse18.toString();
      };
      return parse2;
    }(function(capture, parse2, state) {
      return {
        content: capture[0]
      };
    }),
    react: function react20(node, output, state) {
      return node.content;
    },
    html: function html20(node, output, state) {
      return sanitizeText(node.content);
    }
  }
};
var ruleOutput = function ruleOutput2(rules, property) {
  if (!property && typeof console !== "undefined") {
    console.warn("simple-markdown ruleOutput should take 'react' or 'html' as the second argument.");
  }
  var nestedRuleOutput = function nestedRuleOutput2(ast, outputFunc, state) {
    return rules[ast.type][property](ast, outputFunc, state);
  };
  return nestedRuleOutput;
};
var reactFor = function reactFor2(outputFunc) {
  var nestedOutput = function nestedOutput2(ast, state) {
    state = state || {};
    if (Array.isArray(ast)) {
      var oldKey = state.key;
      var result = [];
      var lastResult = null;
      for (var i = 0; i < ast.length; i++) {
        state.key = "" + i;
        var nodeOut = nestedOutput2(ast[i], state);
        if (typeof nodeOut === "string" && typeof lastResult === "string") {
          lastResult = lastResult + nodeOut;
          result[result.length - 1] = lastResult;
        } else {
          result.push(nodeOut);
          lastResult = nodeOut;
        }
      }
      state.key = oldKey;
      return result;
    } else {
      return outputFunc(ast, nestedOutput2, state);
    }
  };
  return nestedOutput;
};
var htmlFor = function htmlFor2(outputFunc) {
  var nestedOutput = function nestedOutput2(ast, state) {
    state = state || {};
    if (Array.isArray(ast)) {
      return ast.map(function(node) {
        return nestedOutput2(node, state);
      }).join("");
    } else {
      return outputFunc(ast, nestedOutput2, state);
    }
  };
  return nestedOutput;
};
var outputFor = function outputFor2(rules, property) {
  var defaultState = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
  if (!property) {
    throw new Error("simple-markdown: outputFor: `property` must be defined. if you just upgraded, you probably need to replace `outputFor` with `reactFor`");
  }
  var latestState;
  var arrayRule = rules.Array || defaultRules.Array;
  var arrayRuleCheck = arrayRule[property];
  if (!arrayRuleCheck) {
    throw new Error("simple-markdown: outputFor: to join nodes of type `" + property + "` you must provide an `Array:` joiner rule with that type, Please see the docs for details on specifying an Array rule.");
  }
  var arrayRuleOutput = arrayRuleCheck;
  var nestedOutput = function nestedOutput2(ast, state) {
    state = state || latestState;
    latestState = state;
    if (Array.isArray(ast)) {
      return arrayRuleOutput(ast, nestedOutput2, state);
    } else {
      return rules[ast.type][property](ast, nestedOutput2, state);
    }
  };
  var outerOutput = function outerOutput2(ast, state) {
    latestState = populateInitialState(state, defaultState);
    return nestedOutput(ast, latestState);
  };
  return outerOutput;
};
var defaultRawParse = parserFor(defaultRules);
var defaultBlockParse = function defaultBlockParse2(source, state) {
  state = state || {};
  state.inline = false;
  return defaultRawParse(source, state);
};
var defaultInlineParse = function defaultInlineParse2(source, state) {
  state = state || {};
  state.inline = true;
  return defaultRawParse(source, state);
};
var defaultImplicitParse = function defaultImplicitParse2(source, state) {
  var isBlock = BLOCK_END_R.test(source);
  state = state || {};
  state.inline = !isBlock;
  return defaultRawParse(source, state);
};
var defaultReactOutput = outputFor(defaultRules, "react");
var defaultHtmlOutput = outputFor(defaultRules, "html");
var markdownToReact = function markdownToReact2(source, state) {
  return defaultReactOutput(defaultBlockParse(source, state), state);
};
var markdownToHtml = function markdownToHtml2(source, state) {
  return defaultHtmlOutput(defaultBlockParse(source, state), state);
};
var ReactMarkdown = function ReactMarkdown2(props) {
  var divProps = {};
  for (var prop in props) {
    if (prop !== "source" && // $FlowFixMe
    Object.prototype.hasOwnProperty.call(props, prop)) {
      divProps[prop] = props[prop];
    }
  }
  divProps.children = markdownToReact(props.source);
  return reactElement("div", null, divProps);
};
var SimpleMarkdown = {
  defaultRules,
  parserFor,
  outputFor,
  inlineRegex,
  blockRegex,
  anyScopeRegex,
  parseInline,
  parseBlock,
  // default wrappers:
  markdownToReact,
  markdownToHtml,
  ReactMarkdown,
  defaultBlockParse,
  defaultInlineParse,
  defaultImplicitParse,
  defaultReactOutput,
  defaultHtmlOutput,
  preprocess,
  sanitizeText,
  sanitizeUrl,
  unescapeUrl,
  htmlTag,
  reactElement,
  // deprecated:
  defaultRawParse,
  ruleOutput,
  reactFor,
  htmlFor,
  defaultParse: function defaultParse() {
    if (typeof console !== "undefined") {
      console.warn("defaultParse is deprecated, please use `defaultImplicitParse`");
    }
    return defaultImplicitParse.apply(null, arguments);
  },
  defaultOutput: function defaultOutput() {
    if (typeof console !== "undefined") {
      console.warn("defaultOutput is deprecated, please use `defaultReactOutput`");
    }
    return defaultReactOutput.apply(null, arguments);
  }
};
function preprocessMarkdown(markdown) {
  const withoutMultipleNewlines = markdown.replace(/\n{2,}/g, "\n");
  const withoutExtraSpaces = withoutMultipleNewlines.replace(/^\s+/gm, "");
  return withoutExtraSpaces;
}
function markdownToLines(markdown) {
  const preprocessedMarkdown = preprocessMarkdown(markdown);
  const mdParse = SimpleMarkdown.defaultBlockParse;
  const syntaxTree = mdParse(preprocessedMarkdown);
  let lines = [[]];
  let currentLine = 0;
  function processNode(node, parentType) {
    if (node.type === "text") {
      const textLines = node.content.split("\n");
      textLines.forEach((textLine, index) => {
        if (index !== 0) {
          currentLine++;
          lines.push([]);
        }
        textLine.split(" ").forEach((word) => {
          if (word) {
            lines[currentLine].push({ content: word, type: parentType || "normal" });
          }
        });
      });
    } else if (node.type === "strong" || node.type === "em") {
      node.content.forEach((contentNode) => {
        processNode(contentNode, node.type);
      });
    }
  }
  syntaxTree.forEach((treeNode) => {
    if (treeNode.type === "paragraph") {
      treeNode.content.forEach((contentNode) => {
        processNode(contentNode);
      });
    }
  });
  return lines;
}
function markdownToHTML(markdown) {
  const mdParse = SimpleMarkdown.defaultBlockParse;
  const syntaxTree = mdParse(markdown);
  function output(node) {
    if (node.type === "text") {
      return node.content.replace(/\n/g, "<br/>");
    } else if (node.type === "strong") {
      return `<strong>${node.content.map(output).join("")}</strong>`;
    } else if (node.type === "em") {
      return `<em>${node.content.map(output).join("")}</em>`;
    } else if (node.type === "paragraph") {
      return `<p>${node.content.map(output).join("")}</p>`;
    } else {
      return "";
    }
  }
  return syntaxTree.map(output).join("");
}
function applyStyle(dom, styleFn) {
  if (styleFn) {
    dom.attr("style", styleFn);
  }
}
function addHtmlSpan(element, node, width, classes) {
  const fo = element.append("foreignObject");
  const div = fo.append("xhtml:div");
  const label = node.label;
  const labelClass = node.isNode ? "nodeLabel" : "edgeLabel";
  div.html(
    `<span class="${labelClass} ${classes}" ` + (node.labelStyle ? 'style="' + node.labelStyle + '"' : "") + ">" + label + "</span>"
  );
  applyStyle(div, node.labelStyle);
  div.style("display", "table-cell");
  div.style("white-space", "nowrap");
  div.style("max-width", width + "px");
  div.attr("xmlns", "http://www.w3.org/1999/xhtml");
  let bbox = div.node().getBoundingClientRect();
  if (bbox.width === width) {
    div.style("display", "table");
    div.style("white-space", "break-spaces");
    div.style("width", width + "px");
    bbox = div.node().getBoundingClientRect();
  }
  fo.style("width", bbox.width);
  fo.style("height", bbox.height);
  return fo.node();
}
function createTspan(textElement, lineIndex, lineHeight) {
  return textElement.append("tspan").attr("class", "text-outer-tspan").attr("x", 0).attr("y", lineIndex * lineHeight - 0.1 + "em").attr("dy", lineHeight + "em");
}
function createFormattedText(width, g, structuredText, addBackground = false) {
  const lineHeight = 1.1;
  const labelGroup = g.append("g");
  let bkg = labelGroup.insert("rect").attr("class", "background");
  const textElement = labelGroup.append("text").attr("y", "-10.1");
  let lineIndex = -1;
  structuredText.forEach((line) => {
    lineIndex++;
    let tspan = createTspan(textElement, lineIndex, lineHeight);
    let words = [...line].reverse();
    let currentWord;
    let wrappedLine = [];
    while (words.length) {
      currentWord = words.pop();
      wrappedLine.push(currentWord);
      updateTextContentAndStyles(tspan, wrappedLine);
      if (tspan.node().getComputedTextLength() > width) {
        wrappedLine.pop();
        words.push(currentWord);
        updateTextContentAndStyles(tspan, wrappedLine);
        wrappedLine = [];
        lineIndex++;
        tspan = createTspan(textElement, lineIndex, lineHeight);
      }
    }
  });
  if (addBackground) {
    const bbox = textElement.node().getBBox();
    const padding = 2;
    bkg.attr("x", -padding).attr("y", -padding).attr("width", bbox.width + 2 * padding).attr("height", bbox.height + 2 * padding);
    return labelGroup.node();
  } else {
    return textElement.node();
  }
}
function updateTextContentAndStyles(tspan, wrappedLine) {
  tspan.text("");
  wrappedLine.forEach((word, index) => {
    const innerTspan = tspan.append("tspan").attr("font-style", word.type === "em" ? "italic" : "normal").attr("class", "text-inner-tspan").attr("font-weight", word.type === "strong" ? "bold" : "normal");
    if (index === 0) {
      innerTspan.text(word.content);
    } else {
      innerTspan.text(" " + word.content);
    }
  });
}
const createText = (el, text = "", {
  style = "",
  isTitle = false,
  classes = "",
  useHtmlLabels = true,
  isNode = true,
  width,
  addSvgBackground = false
} = {}) => {
  log.info("createText", text, style, isTitle, classes, useHtmlLabels, isNode, addSvgBackground);
  if (useHtmlLabels) {
    const htmlText = markdownToHTML(text);
    const node = {
      isNode,
      label: decodeEntities(htmlText).replace(
        /fa[blrs]?:fa-[\w-]+/g,
        (s) => `<i class='${s.replace(":", " ")}'></i>`
      ),
      labelStyle: style.replace("fill:", "color:")
    };
    let vertexNode = addHtmlSpan(el, node, width, classes);
    return vertexNode;
  } else {
    const structuredText = markdownToLines(text);
    const special = ['"', "'", ".", ",", ":", ";", "!", "?", "(", ")", "[", "]", "{", "}"];
    let lastWord;
    structuredText.forEach((line) => {
      line.forEach((word) => {
        if (special.includes(word.content) && lastWord) {
          lastWord.content += word.content;
          word.content = "";
        }
        lastWord = word;
      });
    });
    const svgLabel = createFormattedText(width, el, structuredText, addSvgBackground);
    return svgLabel;
  }
};
export {
  createText as c
};
//# sourceMappingURL=createText-b0d5c0ec.js.map