()
| 71 | |
| 72 | // 英文 Current Index 表 —— 注入 docs/README-En.md(链接相对 docs/) |
| 73 | function indexBlockEn() { |
| 74 | return [ |
| 75 | "## Current Index", |
| 76 | "", |
| 77 | "> The numbers below are injected by `tools/scripts/build-readme.js` from `docs/data/manifest.json`. **Do not edit by hand.**", |
| 78 | "", |
| 79 | "| Item | Count / Path |", |
| 80 | "| :-- | :-- |", |
| 81 | `| LeetCode animation items | **${stats.count}** |`, |
| 82 | `| Easy | ${stats.easy} |`, |
| 83 | `| Medium | ${stats.medium} |`, |
| 84 | `| Hard | ${stats.hard} |`, |
| 85 | "| Data file | [`data/manifest.json`](data/manifest.json) |", |
| 86 | "| Index by number | [`leetcode-animation-index.md`](leetcode-animation-index.md) |", |
| 87 | "| Index by topic | [`index-by-topic.md`](index-by-topic.md) |", |
| 88 | "| Website path | <https://www.algomooc.com/leetcode-animation> |", |
| 89 | "", |
| 90 | ].join("\n"); |
| 91 | } |
| 92 | |
| 93 | const TARGETS = [ |
| 94 | { |
nothing calls this directly
no outgoing calls
no test coverage detected