We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ea9b4e commit a39c58cCopy full SHA for a39c58c
scripts/build-examples.js
@@ -57,10 +57,12 @@ ${examplesListHtml}
57
function getExamplesListHtml(examples) {
58
return `\
59
<ul>
60
-${examples.map(({ name }) => {
61
- const nameEncoded = encodeURIComponent(name);
62
- return `<li><a target="_blank" href="${BASE_URL}examples/${nameEncoded}">${name}</a></li>`;
63
-})}
+${examples
+ .map(({ name }) => {
+ const nameEncoded = encodeURIComponent(name);
+ return `<li><a target="_blank" href="${BASE_URL}examples/${nameEncoded}">${name}</a></li>`;
64
+ })
65
+ .join("")}
66
</ul>
67
`;
68
}
0 commit comments