Skip to content

Commit 5fdae9b

Browse files
fix deploy error
1 parent 6cf6ff2 commit 5fdae9b

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,17 @@
44

55
> 一套完整的、系统化的嵌入式现代 C++ 开发教程
66
7-
<!-- 封面图占位符 - 后续设计 -->
7+
<div align="center">
8+
9+
## 🎯 嵌入式现代C++开发教程
10+
11+
**从零开始,系统化学习现代 C++ 在嵌入式系统中的实战应用**
12+
13+
| 12 章 | 70+ 篇文章 | 50+ 示例代码 |
14+
|:-----:|:---------:|:-----------:|
15+
| 零开销抽象 | 内存管理 | 智能指针 | 容器 | 并发 | 函数式 |
16+
17+
</div>
818

919
---
1020

@@ -32,6 +42,8 @@
3242

3343
这是一套完整的、系统化的嵌入式 C++ 开发教程,专注于在资源受限的环境中发挥 C++ 的最大优势。本教程不是简单的语法介绍,而是深入探讨**如何在嵌入式系统中高效使用 C++**,包括性能优化、内存管理、硬件交互等核心主题。
3444

45+
点击这里,获取更好的阅读体验👉 [静态网页部署](https://awesome-embedded-learning-studio.github.io/Tutorial_AwesomeModernCPP/)
46+
3547
---
3648

3749
## 🎯 学习目标

scripts/validate_frontmatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def validate_field_types(self, frontmatter: Dict, filepath: Path):
9292
# Validate chapter
9393
if 'chapter' in frontmatter:
9494
chapter = frontmatter['chapter']
95-
if not isinstance(chapter, int) or chapter < 0 or chapter > 10:
95+
if not isinstance(chapter, int) or chapter < 0 or chapter > 100:
9696
self.errors.append(f"{filepath}: Invalid chapter value: {chapter}")
9797

9898
# Validate order

0 commit comments

Comments
 (0)