@patternfly/quickstarts 6.2.0-prerelease.5 → 6.2.0-prerelease.7
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/patternfly-docs/quick-starts/design-guidelines/design-guidelines.md +1 -1
- package/dist/quickstarts-base.css +4 -4
- package/dist/quickstarts-full.es.js +9 -2
- package/dist/quickstarts-full.es.js.map +1 -1
- package/dist/quickstarts.css +4 -4
- package/dist/quickstarts.min.css +1 -1
- package/package.json +1 -1
- package/src/ConsoleInternal/components/markdown-view.tsx +14 -2
|
@@ -101,7 +101,7 @@ Example: "View the details of your sample application"
|
|
|
101
101
|
|
|
102
102
|
In the task description, explain the importance of the task for the user. When writing a task description, begin with a call to action, or a statement that identifies a desired action or outcome. Then write a brief statement that explains how the user will accomplish the task and introduces the task’s steps.
|
|
103
103
|
|
|
104
|
-
Example: "Notebooks and applications need the connection information for your
|
|
104
|
+
Example: "Notebooks and applications need the connection information for your [product-title] instance. Follow these steps to save the required information for later use… To obtain connection information to [product-title]:”
|
|
105
105
|
|
|
106
106
|
#### Task steps
|
|
107
107
|
|
|
@@ -163,6 +163,10 @@
|
|
|
163
163
|
border: var(--pf-v6-c-card--BorderColor) var(--pf-v6-c-card--BorderStyle) var(--pf-v6-c-card--BorderWidth);
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
+
.pfext-quick-start-footer {
|
|
167
|
+
padding-top: var(--pf-t--global--spacer--md);
|
|
168
|
+
}
|
|
169
|
+
|
|
166
170
|
.pfext-quick-start-task {
|
|
167
171
|
flex: 1 1 0;
|
|
168
172
|
overflow: auto;
|
|
@@ -174,10 +178,6 @@
|
|
|
174
178
|
height: initial;
|
|
175
179
|
}
|
|
176
180
|
|
|
177
|
-
.pfext-quick-start-footer {
|
|
178
|
-
padding-top: var(--pf-t--global--spacer--md);
|
|
179
|
-
}
|
|
180
|
-
|
|
181
181
|
.pfext-quick-start-task-header button.pf-v6-c-wizard__nav-link {
|
|
182
182
|
margin-bottom: var(--pf-t--global--spacer--md);
|
|
183
183
|
}
|
|
@@ -28731,8 +28731,15 @@ const markdownConvert = (markdown, extensions) => __awaiter(void 0, void 0, void
|
|
|
28731
28731
|
node.setAttribute('xlink:show', 'new');
|
|
28732
28732
|
}
|
|
28733
28733
|
});
|
|
28734
|
-
|
|
28735
|
-
|
|
28734
|
+
const reverseString = (str) => str.split('').reverse().join('');
|
|
28735
|
+
// replace code fences that end in a double curly brace (which are used by our custom md extensions) with non
|
|
28736
|
+
// markdown formatting related tokens so that marked doesn't try to parse them as code spans
|
|
28737
|
+
//
|
|
28738
|
+
// we want to reverse the string before we do the substitution so that we only match the opening code fence which
|
|
28739
|
+
// corresponds to the closing code fence with the double curly brace
|
|
28740
|
+
const reversedMarkdown = reverseString(markdown);
|
|
28741
|
+
const reverseMarkdownWithSubstitutedCodeFences = reversedMarkdown.replace(/{{```((.|\n)*?)```/g, '{{@@@$1@@@');
|
|
28742
|
+
const markdownWithSubstitutedCodeFences = reverseString(reverseMarkdownWithSubstitutedCodeFences);
|
|
28736
28743
|
const parsedMarkdown = yield marked.parse(markdownWithSubstitutedCodeFences);
|
|
28737
28744
|
// Swap the temporary tokens back to code fences before we run the extensions
|
|
28738
28745
|
let md = parsedMarkdown.replace(/@@@/g, '```');
|