@patternfly/quickstarts 6.2.0-prerelease.5 → 6.2.0-prerelease.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +9 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +9 -2
- package/dist/index.js.map +1 -1
- package/dist/quickstarts-full.es.js +9 -2
- package/dist/quickstarts-full.es.js.map +1 -1
- package/package.json +1 -1
- package/src/ConsoleInternal/components/markdown-view.tsx +14 -2
package/dist/index.js
CHANGED
|
@@ -1259,8 +1259,15 @@ const markdownConvert = (markdown, extensions) => tslib.__awaiter(void 0, void 0
|
|
|
1259
1259
|
node.setAttribute('xlink:show', 'new');
|
|
1260
1260
|
}
|
|
1261
1261
|
});
|
|
1262
|
-
|
|
1263
|
-
|
|
1262
|
+
const reverseString = (str) => str.split('').reverse().join('');
|
|
1263
|
+
// replace code fences that end in a double curly brace (which are used by our custom md extensions) with non
|
|
1264
|
+
// markdown formatting related tokens so that marked doesn't try to parse them as code spans
|
|
1265
|
+
//
|
|
1266
|
+
// we want to reverse the string before we do the substitution so that we only match the opening code fence which
|
|
1267
|
+
// corresponds to the closing code fence with the double curly brace
|
|
1268
|
+
const reversedMarkdown = reverseString(markdown);
|
|
1269
|
+
const reverseMarkdownWithSubstitutedCodeFences = reversedMarkdown.replace(/{{```((.|\n)*?)```/g, '{{@@@$1@@@');
|
|
1270
|
+
const markdownWithSubstitutedCodeFences = reverseString(reverseMarkdownWithSubstitutedCodeFences);
|
|
1264
1271
|
const parsedMarkdown = yield marked.marked.parse(markdownWithSubstitutedCodeFences);
|
|
1265
1272
|
// Swap the temporary tokens back to code fences before we run the extensions
|
|
1266
1273
|
let md = parsedMarkdown.replace(/@@@/g, '```');
|