docs: update readme frameworks progress

This commit is contained in:
Mathieu Schimmerling
2024-10-25 18:08:59 +02:00
parent ed143c2fb1
commit 8de99a30e0
2 changed files with 566 additions and 582 deletions

1133
README.md

File diff suppressed because it is too large Load Diff

View File

@@ -35,13 +35,14 @@ async function main() {
const percent = Math.ceil(
(allChecks.filter((v) => v).length / allChecks.length) * 100
);
let frameworkContent = `<details>
<summary>
<img width="18" height="18" src="public/${framework.img}" />
<b>${framework.title}</b>
<img src="https://us-central1-progress-markdown.cloudfunctions.net/progress/${percent}" /></summary>
${list}
let frameworkContent = `
<details>
<summary>
<img width="18" height="18" src="public/${framework.img}" />
<b>${framework.title}</b>
<img src="https://us-central1-progress-markdown.cloudfunctions.net/progress/${percent}" />
</summary>
${list}
</details>`;
progressionContent += frameworkContent;
}